我的問題返回的元素上運行,如何讓Java腳本是如何才能讓我的Java腳本上,通過AJAX返回的元素運行。該JavaScript不適用於AJAX返回的內容。在我的腳本中,它假設彈出一個帶有「你好」但不是的對話框。我怎樣才能使它工作或有其他方法呢?感謝您的建議。下面通過AJAX
的是我的代碼...
的index.html
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#box_1").on("click", function() {
alert("Hello!");
});
changeDisplay();
});
function changeDisplay() {
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("text").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","ajaxHandling.php",true);
xmlhttp.send();
};
</script>
</head>
<body>
<h1>Ajax Test</h1>
<div id="text">
</div>
</body>
</html>
ajaxHandling.php
<?php
echo '<div id="box_1" class="box">Click me</div>';
?>
出於興趣,你有什麼理由爲什麼當你運行jQuery時使用vanilla JS作爲AJAX? – 2013-03-12 16:09:56
爲什麼不使用jQuery提供的'ajax'函數?它允許你在發送ajax請求之前,在成功和完成之後調用函數。 http://api.jquery.com/jQuery.ajax/ – martincarlin87 2013-03-12 16:10:24
除非你有一些禁止或不能JS庫添加到頁面,這是更好的使用jQuery,原型,或者有成千上萬的人已經測試了另一個庫,而比滾動你自己的Ajax例程。如果你不能添加JQuery,你應該在你的問題中說:) – Gus 2013-03-12 16:16:08