复选框点击网页?

时间:2015-04-01 04:43:23

标签: javascript c# jquery html checkbox

感谢。

我很确定我需要解决iCheck-helper ..

1 个答案:

答案 0 :(得分:1)

复选框具有属性Checked,您需要将其设置为true。

test.setAttribute("checked", "true");

或者使用值属性...

test.setAttribute("value", "1");