有没有办法在 asp.net MVC 中使用切换按钮而不是 CheckboxFor?

我正在使用 twitter bootstrap,但我找不到任何具有这种效果的类。

任何帮助都会很棒。

谢谢

最佳答案

尝试:https://bttstrp.github.io/bootstrap-switch/

<input type="checkbox" name="my-checkbox" checked><input type="checkbox" name="my-checkbox" checked>

$("[name='my-checkbox']").bootstrapSwitch();

关于asp.net-mvc - 有什么方法可以使用 CheckBoxFor 和 Bootstrap 在 asp.net MVC 中显示切换按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24733866/

10-16 21:08