我似乎无法让jquery $ .post工作

时间:2011-07-24 17:02:38

标签: jquery

$(document).click(function(){
    getComments();
});

function getComments()
{
    var directory = $(".active img").prop("src");
    directory = directory.substring(58);
    //alert(directory);
    $("#photoComments").text(directory);
    $.post('getPhotoComments.php', function(output){
        //$("#photoComments").html(output);
        $("#photoComments").html("jus checkin2").show();
    });
}

以上是我的代码。一切都有效,直到我开始$ .post的部分。函数()中没有任何东西可以工作。我只是测试是否会将我的ID #photoComments设置为提供的文本:“jus checkin 2”但似乎没有任何事情发生。我真的需要帮助。是的,我已经正确设置了网址“getPhotoComments.php”并且尚未使用它。感谢

1 个答案:

答案 0 :(得分:0)

Evra:尝试将其放入

$(function(){
    //your code
});