如何解决jquery ajax问题?

时间:2011-11-11 22:48:20

标签: php jquery ajax post

我有一个简单的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

但是没有响应数据,我没有看到我的变量被传递或我的成功消息

关于我缺少什么的任何想法?

感谢

1 个答案:

答案 0 :(得分:2)

dataType: dataString更改为data: dataString

dataType是可选的,但如果设置为xmljsonscripthtml