如何使用ajax调用在php脚本中发布checked复选框的值,即当用户点击复选框时,值将发布到php脚本。
答案 0 :(得分:0)
点击复选框onclick事件:
<input type='ceheckbox' onclick='postwithajax(this)' />
并制作如下函数:
function postwithajax(e){
//and here send with ajax e.checked
}
答案 1 :(得分:0)
使用jquery从html中获取值
$("#submit").click(function(){
var myarray = [];
$("#div input:checked").each(function() {
myarray.push($(this).val()); //push each val into the array
});
// here post Array with ajax
});
HTML
<html>
<head>
</head>
<body>
<div id="div">
<input type="checkbox" value="one_name" checked>
<input type="checkbox" value="one_name1">
<input type="checkbox" value="one_name2">
<input type="button" value="submit" id="submit">
</div>
<textarea id="t"></textarea>
</body>
</html>