我有一个带有复选框的数据表,一旦选择了要更新数据库的复选框,当我选择了所有复选框时,所有记录都应使用通用值(例如1)进行更新;
谢谢。
答案 0 :(得分:0)
您可以使用任何客户端语言进行操作。但是,这里我使用了jQuery。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("input[type=checkbox]").each( function(i, field){
if($("#c"+(i+1)).prop("checked")){
$("#results").append("you have selected :"+field.name );
}
});
});
});
</script>
</head>
<body>
one: <input type="checkbox" name="1" id="c1" value="1" ><br>
two: <input type="checkbox" name="2" id="c2" value="2"><br>
three: <input type="checkbox" name="3" id="c3" value="3"><br>
four: <input type="checkbox" name="4" id="c4" value="4"><br>
<button>click here</button>
<div id="results"></div>
</body>
</html>
使用上述方法,在创建客户端对象时。