在thinkphp中如何使用checkbox? 类似购物车的,如何用checkbox勾选n行数 ...
发布网友
发布时间:2023-12-03 06:28
我来回答
共3个回答
热心网友
时间:2024-06-21 20:48
$_POST表单提交后本来就会有勾选的checkbox值,如果要jQuery的话:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GetCheckboxValues</title>
<script language="javascript" type="text/javascript" src="../js/jquery-1.9.1.js"></script>
</head>
<body>
<input type="checkbox" name="ids[]" value="abc" />
<input type="checkbox" name="ids[]" value="def" />
<input type="checkbox" name="ids[]" value="ghi" />
<input id="btn" type="button" name="btn" value="submit" />
<script>
jQuery(function(){
var box = {
getBoxVal:function(){
array = new Array();
$("input[name^='ids']").each(function(i){
if($(this).prop('checked') == true){
array .push($(this).val());
}
});alert(array);
return array;
},//end getBoxVal
submitForm:function(){
arr = box.getBoxVal();
$("#btn").click(function(){
alert("arr:"+arr);
});
}//end submitForm
}//end box
box.submitForm();
});
</script>
</body>
</html>
热心网友
时间:2024-06-21 20:46
用数组传值。
热心网友
时间:2024-06-21 20:49
看一下TP视频教程