2015-05-06 75 views
0

任何人都可以給我如何使其工作的建議嗎?如何在JSP中將HTML頁面加載到DIV中(沒有任何加載)

<html> 
<head> 
    <script src="../js/jquery-1.9.1.js"></script> 
</head> 
<body> 
    <div id="divpage"></div> 
    <script> 
     $("#divpage").load("http://localhost:3000/annotation/testuser/demo.html"); 
     alert("Load was performed."); 
    </script> 
</body> 
</html> 
+0

可能重複的http://計算器.com/questions/17636528/how-do-i-load-an-html-page-in-a-div-using-javascript – mwilson

回答

0

將您的腳本塊移出本體並放在頭部。然後,包裝你的JQuery這樣的:

<script> 
$(document).ready(function() 
{ 
    $("#divpage").load("http://localhost:3000/annotation/testuser/demo.html"); 
    alert("Load was performed."); 
}); 
</script> 
+0

謝謝先生的回答 –

2

瀏覽器有加載整個DOM,纔可以使用JavaScript操縱它, jQuery中使用.ready()

$(document).ready(function() 
{ 
    $("#divpage").load("http://localhost:3000/annotation/testuser/demo.html"); 

}); 
相關問題