对于jQuery复选框和标签,默认对齐方式如下:
[x] label
如何更改它们,以便标签在前面?使用firebug我没有找到任何对齐的声明。
答案 0 :(得分:1)
只需将标签文本放在<input type = "checkbox"/>
之前,以便您的代码如下所示:
<label for = "testCheckbox">Label</label> <input type = "checkbox" id = "testCheckbox" name = "testCheckBox"/>