码迷,mamicode.com
首页 > Web开发 > 详细

mui switch 开关js控制打开 & Cannot read property 'toggle' of null

时间:2018-05-15 15:54:43      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:div   handle   ann   mui   开关   hand   style   attr   timeout   

//打开开关

mui(‘#mySwitch‘).switch().toggle();

//小开关打开异常的情况解决办法
$(".mui-switch-handle").attr("style","");

发生Cannot read property ‘toggle‘ of null是因为,执行打开开关需要等页面加载完在执行

写个定时器就可以了

setTimeout(function(){

  mui(‘#mySwitch‘).switch().toggle();

  //小开关打开异常的情况解决办法
  $(".mui-switch-handle").attr("style","");

},160);

 

mui switch 开关js控制打开 & Cannot read property 'toggle' of null

标签:div   handle   ann   mui   开关   hand   style   attr   timeout   

原文地址:https://www.cnblogs.com/richard-ju/p/L2018005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!