同时满足多个文本框不为空值按钮呈现可用激活状态disabled

简介:

项目需要,自己写了一个jquery代码,该代码需要满足两个文本框都不为空值,按钮才可用激活状态。

请转载此文的朋友务必附带原文链接,谢谢。

原文链接:http://xuyran.blog.51cto.com/11641754/1827959

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
< html >
     < head >
         < meta  charset = "UTF-8" >
         < meta  name = "viewport"  content = "width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no" >
         < script  src = "../../js/jquery.js" ></ script >
         < script  src = "../../js/mui.min.js" ></ script >
         < link  href = "../../css/mui.min.css"  rel = "stylesheet"  />
         < link  rel = "stylesheet"  href = "../../css/iconfont.css" >
         < link  rel = "stylesheet"  href = "../../css/app.css" >
         < title >红包设置</ title >
         < script >
             $(document).ready( function(){
                  $(".mui-input-row input").keyup(function(){
                    var value2 = $(this).parent().siblings().find("input").val();
                 
             if( this.value !=""&& value2 !=""){
                 $(".sc-btn button").attr("disabled",false);
             }else{$(".sc-btn button").attr("disabled",true);}
           });
 
                 
});
         </ script >
         < style >
             html,body{background: #fef9f4;}
             .mui-content{padding-top: 20px;background: #fef9f4;}
             .mui-input-row,.mui-input-row:last-child{width: 90%;margin: auto;background: #FFFFFF;margin-bottom: 10px;}
             .mui-input-row label{font-family: "微软雅黑";}
             h2{text-align: center;font-weight: normal;padding: 40px 0 0;}
             .sc-btn{width: 90%;margin: auto;padding-top: 80px;}
             .mui-btn-block{padding: 10px 0;}
             .mui-btn-blue{background: #a02227;border: none;}
             .mui-btn-blue.focus-active{background: #a02227;}
         </ style >
         
     </ head >
     < body >
         < div  class = "mui-content" >
         < div  class = "mui-input-row" >
             < label >红包个数</ label >
             < input  type = "text"  placeholder = "填写红包个数" >
         </ div >
         < div  class = "mui-input-row" >
             < label >单个金额</ label >
             < input  type = "text"  placeholder = "填写神灯币" >
         </ div >
         < h2 >¥30个神灯币</ h2 >
          < div  class = "sc-btn" >
           < button  type = "button"  class = "mui-btn mui-btn-blue mui-btn-block"  disabled = "disabled" >付款</ button >
            </ div >
         </ div >
     </ body >
</ html >

效果预览:

wKioL1eO1rXjVrZiAAAy-c4bZpY303.png-wh_50

wKiom1eO1raAu_yWAAAwm9Uqt84231.png-wh_50

本文转自  小旭依然  51CTO博客,原文链接:
http://blog.51cto.com/xuyran/1827959
相关文章
|
7月前
单选框设置默认选中
单选框设置默认选中
71 1
textarea文本框默认显示文本鼠标点击时清空
textarea文本框默认显示文本鼠标点击时清空
|
5月前
Element UI 多选表格--判断勾选数据行的 Checkbox 时为选中还是取消选中
Element UI 多选表格--判断勾选数据行的 Checkbox 时为选中还是取消选中
53 1
输入框禁用状态 可清空输入框如何实现?组件写的
输入框禁用状态 可清空输入框如何实现?组件写的
|
JavaScript
checkbox选中和取消,控制dom元素颜色变化
checkbox选中和取消,控制dom元素颜色变化
59 0
|
开发者
jeDate日期控件的使用以及选中后点确定按钮关闭功能
jeDate日期控件的使用以及选中后点确定按钮关闭功能
158 0
【Layui】对于列表页复选框只有选中时才会显示
【Layui】对于列表页复选框只有选中时才会显示
179 0
【Layui】对于列表页复选框只有选中时才会显示
【Layui】关于单选框的选中状态,下拉框默认显示
【Layui】关于单选框的选中状态,下拉框默认显示
650 0
【Layui】关于单选框的选中状态,下拉框默认显示
|
JavaScript 前端开发
页面一刷新让文本框自动获取焦点-- 和自定义v-focus指令
页面一刷新让文本框自动获取焦点-- 和自定义v-focus指令