1
當談到ajax和javascript時,它幾乎是一個newb:/ ..這段代碼適用於chrome和firefox ..但是我只是把所有東西都弄亂了..我搜索了一下並找不到任何解釋爲什麼這不起作用。ajax/javascript不工作在ie
<div id="adsdiv"><div id="zcaptcha"></div></div>
<div id="divid"></div>
<script>
$("#zcaptcha").bind("correct", function(){
document.getElementById("adsdiv").style.display = "none" ;
setInterval(function(){
jQuery("#divid").load('test.php',
function(response, status, xhr) {
if (status == "error") {
jQuery("#divid").html(msg + xhr.status + " " + xhr.statusText);
}
});
}, 100);
});
</script>
什麼是觸發「正確的」事件? – adeneo
在IE中會發生什麼?你能看到HTTP請求到達你的服務器嗎? IE調試工具說什麼? JS控制檯是否有錯誤?您能否在開發人員工具的Net選項卡中看到請求發送? – Quentin
認真嗎?您正嘗試每0.1秒重新加載一次內容? – jfriend00