mui switch 开关js控制打开 & Cannot read property 'toggle' of null
Posted 此生不变,一世不悔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mui switch 开关js控制打开 & Cannot read property 'toggle' of null相关的知识,希望对你有一定的参考价值。
//打开开关
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的主要内容,如果未能解决你的问题,请参考以下文章
Flutter -- 基础组件单选开关(Switch)& 单选框(Radio) & 复选框(Checkbox)
UVALive - 6912 Prime Switch (状压DP)