描述:
我浏览了 Bootstrap Switch 的文档,但不清楚我应该如何更改开关输入的 labelText。
Name | Attribute | Type | Description | Values | Default
----------+----------------+-------+-----------------------------------------+--------+--------
labelText | data-label-text| String| Text of the center handle of the switch | String| ' '
这是它应该看起来的样子:
我只是在“标签”区域中没有文字就知道了。
我试过的:
我可以通过这种方式默认设置 labelText:
$.fn.bootstrapSwitch.defaults.labelText = 'Label!';
但我不想将每个 bootstrapSwitch labelText 都设置为“Label!” 只有一个。
我试过 $("#my-input").labelText("Label!");
但没用(没想到会这样)
问题:
如何使用 Bootstrap Switch 为一个输入设置标签文本?