$(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的部分。 function()沒有任何作用。我只是測試,看看它是否會將我的ID #photoComments設置爲提供的文本:「jus checkin 2」,但似乎沒有發生。請真的需要幫助。是的,我有「getPhotoComments.php」設置正確,並沒有被使用。由於
你的意思是回調中的代碼不會運行,或運行,但「只是檢查」事不顯示? –
任何錯誤訊息?任何來自Firebug(或類似)?我認爲我們需要更多幫助你。 –
你可以告訴你getPhotoComments.php,如果你沒有發佈任何文件,然後使用得到... –