javascript – Jquery按钮标签选项不适用于输入类型复选框

在这里嘲笑:
http://jsfiddle.net/dRtaR/2/

Jquery UI按钮的label选项不起作用.

我的目标是在按钮上添加标签,而不必指定< / label> html标签.

我可以这样做吗?

最佳答案 不是这个jQueryUI方法.从.button()概述选项卡:

In addition to basic push buttons, radio buttons and checkboxes (inputs of type radio and checkbox) can be converted to buttons: Their associated label is styled to appear as the button, while the underlying input is updated on click.

当您在复选框或单选按钮上指定按钮时,它会隐藏输入并设置关联标签的样式.

你有什么理由不能写出标签吗?如果您无法访问html,可以使用jQuery编写它.请参阅this horrible example.它可能会让您了解下一步的位置.

点赞