我有一个简单的ajax帖子,出了点问题。这是我的代码:
<div id="one_hundredContent"></div>
<a href="<?php echo $id; ?>" id="id"></a>
<a href="100" id="one_hundred"><div class="tab6_stats_under1">100</div></a>
和js
$('#one_hundred').live("click", function() {
var votes = $("#one_hundred").attr("href");
var id = $("#id").attr("href");
var dataString = 'id=' + id+ '&votes=' + votes;
$.ajax({
type: "POST",
url: "https://test.com/fileupload.php",
dataType: dataString ,
success: function() {
$('#one_hundredContent').html('success');
}
});
return false;
});
和php
if(isset($_POST['id']) && isset($_POST['votes'])){
$tal = $_POST['id'];
$votes = $_POST['votes'];
echo $tal.' '. $votes;
die;
}
请求继续OK:
Request URL:https://test.com/fileupload.php
Request Method:POST
Status Code:200 OK
但是没有响应数据,我没有看到我的变量被传递或我的成功消息
关于我缺少什么的任何想法?
感谢
答案 0 :(得分:2)
将dataType: dataString
更改为data: dataString
dataType
是可选的,但如果设置为xml
,json
,script
或html