举个例子
<body><input type="checkbox" id="box" checked>123
<script>
var box = document.getElementById('box')
if(box.checked) {
console.log('复选框被选中')
}
</script>
</body>
该案例复选框被选中,所以会出输出'复选框被选中'。checked属性存在会自动转换为bool值true,所以可以if语句做判断。
jsp 页面根据判断checkbox是否被选中方法如下:在html 如果一个复选框被选中 是 checked="checked",利用jquery来判断:
if($("#id").attr("checked")==true){
//动态创建input
var input = document.createElement("input")
input.className = "input"
input.type = "text"
span.appendChild(input)
}