jQuery Ajax方法数据参数发送一个Number

时间:2010-11-18 00:29:10

标签: ajax jquery

原谅我的坏英语,

我正在使用ajax调用,代码如下:

$.ajax({
            url:'fetch.php',
            type: 'GET',
            **data: { temp : 'counter' },**
            success: function(data){
                $('#rules2').append(data);  
        }   

问题是我希望计数器是一个数字......我已经将它设置为 var counter = 1; 但它的作用是发送字符串“counter”。

对此有何帮助?

我想要做的是使用fetch.php文件从db获取一些数据并通过id获取该数据...所以id是一个数字,我需要使用ajax方法发送一个数字。

THX

1 个答案:

答案 0 :(得分:1)

$.ajax({
    url:'fetch.php',
    type: 'GET',
    data: { temp : counter }, // Note the missing quotation marks
    success: function(data) {
        $('#rules2').append(data);  
}