JS function 复选框
Posted dong208
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS function 复选框相关的知识,希望对你有一定的参考价值。
function三种写法
1.$(document).ready(function(){})
2.$().ready(function(){})
3.$(function(){}) (前面两种的简写)
html复选框
<tr>
<td style="width:30%" align="left">
<input type="checkbox" id="btnAgents" name="btnCheckbox" style="margin-bottom: 8px" value="btnAgents"/>代理商管理
</td>
<td style="width:70%">
<input type="checkbox" id="btnAgents1" name="btnCheckbox" value="btnAgents1" style="margin-bottom: 8px"/>代理商列表
<input type="checkbox" id="btnAgents2" name="btnCheckbox" value="btnAgents2" style="margin-bottom: 8px" />新增代理商
</td>
</tr>
js
$(function () {
//代理商管理
$("#btnAgents").bind("click", function () {
$("#btnAgents1").attr("checked", $("#btnAgents").prop("checked"));
$("#btnAgents2").attr("checked", $("#btnAgents").prop("checked"));
});
})
以上是关于JS function 复选框的主要内容,如果未能解决你的问题,请参考以下文章