我想我改變了一些東西,現在它不工作。我已經嘗試了一切。評論一切,但已經晚了,所以我可能犯了愚蠢的錯誤。那就是:AJAX Post突然停止工作?
// Show All Work on Load
function showAllWorkOnLoad() {
var thePostData = "filter=allwork";
var inner = document.getElementById('content').innerHTML;
alert(inner);
$.ajax({
type: "POST",
url: "http://justtwobros.com/get_work.php",
data: thePostData,
success: function(theRetrievedData) {
document.getElementById('content').innerHTML = theRetrievedData;
$("#content").fadeIn(20);
focusButtonAllWork();
var count = 0;
$("#content").find('.work_thumbnail_wrapper').each(function() {
count++;
var timeWait = (count * 100) + 500;
var theId = $(this).attr('id');
var theIdDone = "#" + theId;
setTimeout(function(){$(theIdDone).fadeIn(300);},timeWait);
});
}
});
}
如果你想有一個環節,那就是:http://justtwobros.com
沒有被顯示在面朝上(它調用此JavaScript函數來得到一個PHP文件的結果,然後把它在,然後在部分褪色。我知道它在這裏搞亂了,因爲我只是把文字的PHP文件,它仍然沒有奏效。
謝謝!
儘量提醒試過成功函數 –
內的任何消息......沒有出現... – iosfreak
意味着從post方法返回數據時發生了一些錯誤 –