如何使用jquery禁用Switch Button?

时间:2017-09-26 15:13:48

标签: javascript jquery

我在jquery下面使用switch。

http://www.jqueryscript.net/demo/Custom-On-Off-Toggle-Switch-Plugin-For-jQuery-on-off-switch-js/ 文档链接 (http://www.dhtmlgoodies.com/index.html?whichScript=on-off-switch

此js转换复选框以切换。

但是没有选项可以使用jQuery禁用开关。

任何人都可以帮助我如何完成这项工作。

感谢。

1 个答案:

答案 0 :(得分:0)

一种hacky方式可能是:

文件“on-off-switch.js”包含一个函数:

listenToClickEvent : function(){
    if (disabled) {
      return
    }
}

并在其他地方设置禁用标志。 我会投入一些时间来寻找更好的解决方案(例如,禁用每个css)