1

我在将变量传递给我的 ajax 时遇到问题:

这将起作用: url: 'testing.php?id=1',

这将不起作用: url: 'testing.php?id=theid',

这是有效的完整代码:

function myfunc(theid) {
    $.ajax({
        url: 'testing.php?user_id=1',
        success: function() {
            alert('this worked' + venueid);
        }
    });
}

并且这段代码没有传递变量值:

function myfunc(theid) {
    $.ajax({
        url: 'testing.php?user_id=theid',
        success: function() {
            alert('this worked' + venueid);
        }
    });
}

这是语法问题吗?我在这里做错了什么?

4

1 回答 1

3
function myfunc(theid) {
$.ajax({
   url: 'testing.php?user_id='+ theid,
   success: function(){
   alert('this worked' + venueid);
                    }
});
}
于 2013-06-03T11:09:39.720 回答