3

我设置了一个引导开关,我只想将其中一项设置为只读。

我努力了:

$('#charge').bootstrapSwitch('setReadOnly', true);

但我得到:Uncaught TypeError: Cannot read property 'apply' of undefined

HTML 是:

<input name="name1" type="checkbox" class="item-types"
       id="charge"
       data-size="large"
       data-indeterminate="true"
       data-on-text="YES"
       data-off-text="NO" />

我究竟做错了什么?

4

1 回答 1

2

看起来你可能有第一个参数错误。应该

$('#charge').bootstrapSwitch('readonly', true);

http://www.bootstrap-switch.org/options.html

于 2015-04-16T02:45:01.643 回答