为了账号安全,请及时绑定邮箱和手机立即绑定

jquery-dialog按钮设置灰色不可点击操作

标签:
JQuery

         

var editupdate=function(){var appId=process_appId;$("#editupdate").dialog('option','appId',appId);var dlg = document.getElementById("editupdate");var elements = dlg.getElementsByTagName("INPUT")for( i = 0 ; i < elements.length ; i++ ){var item = elements.item(i);if(item.name=="finishtime"){      var date= new Date(applyAll[appId][item.name]);            //日期格式化      var days= date.getDate(); //从 Date 对象返回一个月中的某一天 (1 ~ 31)。                      var months=date.getMonth()+1;//从 Date 对象返回月份 (0 ~ 11)。                      var years=date.getFullYear();//从 Date 对象以四位数字返回年份。                      var hours=date.getHours();//返回 Date 对象的小时 (0 ~ 23)。                      var minutes=date.getMinutes();//返回 Date 对象的分钟 (0 ~ 59)。                      var seconds=date.getSeconds();//返回 Date 对象的秒数 (0 ~ 59)。      if(days<10){        days="0"+days;      }      if(hours<10){        hours="0"+hours;      }      if(minutes<10){        minutes="0"+minutes;      }      if(seconds<10){        seconds="0"+seconds;      }        if(months<10){        months="0"+months;      }      item.value=years+"-"+months+"-"+days+" "+hours+":"+minutes+":"+seconds;      if(item.value=="NaN-NaN-NaN NaN:NaN:NaN"){      item.value="nullvalue";      }      }else{      item.value = applyAll[appId][item.name];         }               }var elements = dlg.getElementsByTagName("SELECT");for( i = 0 ; i < elements.length ; i++ ){var item = elements.item(i);item.value = applyAll[appId][item.name];//按钮判断禁用if(item.value=="finish"){              $("#editupdate").parent().find("button").each(function() {                             if( $(this).text() == '修改' ) {                                $(this).attr('disabled', true);                               }                             });}else{                            $("#editupdate").parent().find("button").each(function() {                             if( $(this).text() == '修改' ) {                                $(this).attr('disabled', false);                               }                             });}}$("#editupdate").dialog("open");};





点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消