bootstrap switch handlewidth问题

时间:2016-05-31 22:35:17

标签: javascript jquery css twitter-bootstrap

我一直在玩bootstrap handlewidth,但除了这个属性外,其他一切都有效。我想增加按钮的大小。

当我更改handleWidth属性时,它什么都不做

请检查此jsfiddle:http://jsfiddle.net/sumw4/1479/

$('.probeProbe').bootstrapSwitch({
     'state': true,
     'size' : 'normal',
     'labelText': "demo",
     'handleWidth': 1000 //I want to increase the size of handleWidth
});

在网站/ Wiki上,这有效:http://www.bootstrap-switch.org/examples.html

我不确定为什么它不起作用。有人可以帮忙吗?我在这里做错了什么?

1 个答案:

答案 0 :(得分:3)

在你的jsfiddle中,你引用了bootstrap-switch的旧版本(3.0.1)。将引用更改为当前版本,3.3.2

http://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.2/js/bootstrap-switch.js

它完美无缺:http://jsfiddle.net/sumw4/1481/