有另一个问题,关于ajax以及如何从复选框表单发送数据而没有任何页面重新加载/重定向,我有以下代码,这里是标记:
<html>
<head>
<title>guild</title>
</head>
<body>
<div id="dive">
<form method="post" action="">
<input type="checkbox" name="userList[]" value="together" />together<br />
<input type="checkbox" name="userList[]" value="we" />we<br />
<input type="checkbox" name="userList[]" value="made" />made<br />
<input type="checkbox" name="userList[]" value="it" />it<br />
<input type="submit" id="submit" value="yeah we did it!" />
</form>
</div>
and here's the jquery:
<script type="text/javascript" src="jquery-1.8.0.min (1).js"></script>
<script type="text/javascript">
$(document).ready(function(){
//when the button is clicked
$("#submit").click(function(){
//put the checked data into an array
var userList= $('#dive input[type=checkbox]:checked').serializeArray();
//send the data without page reload/refresh/redirect
$.post("guild.php", {userList: userList},function(userList)
{
});
});
});
</script>
</body>
</html>
所以检查过的数据应该发送到一个php文件,然后把它写入文件,这是脚本:
<?php
//get sent data
$userList=$_POST['userList'];
//open file to be written to
$fp=fopen("guild.html", 'a');
//write data into file
for($i=0;$i<sizeof($userList);$i++)
{
fwrite($fp, "<div class='gn'>."userList[$i]"."<br>"."</div>");
}
//close file
fclose($fp);
?>
我知道这是一个非常简单的问题,但即使在阅读其他答案之后,我也无法让它发挥作用。我需要以数组的形式发送已检查的数据,而不是字符串。那么我将如何更改jquery部分以使其正常工作?感谢提前帮助,我是一个极端的初学者!
答案 0 :(得分:3)
根据jQuery post documentation,您应该像这样发送帖子数据数组:
$.post("guild.php", { "userList[]": userList }...
答案 1 :(得分:0)
我使用那个脚本,我收到了这个:
Array ( [0] => [object Object] [1] => [object Object] )
我使用此代码:
function add_apartament ()
{
var vedere= $('#vedere input[type=checkbox]:checked').serializeArray();
$.ajax({
type: "POST",
url: "inc/ajax/add_apartament_action.php",
data: {
'vedere[]':vedere
},
success: function (msg) {
$("#action").html(msg);
},
error: function (xhr, err) {
alert("readyState: " + xhr.readyState + "\nstatus: " + xhr.status);
alert("responseText: " + xhr.responseText);
}
});
}
和php ...
<?php
print_r($_POST['vedere']);
?>