0
我正在構建一個網頁,我想重新使用一些HTML,我在我的網站上有其他地方。我正在構建的頁面(index.html
)可以使用XMLHttpRequest
動態獲取並插入我想要的HTML(existing.html
)。但是,我想要得到的HTML由一些Javscript填充。當我將其加載到我的新的一頁沒有被執行的JavaScript:Javascript - 動態加載HTML片段並運行腳本
的index.html:
<html>
<head>
<script type = "text/javascript">
... //use XMLHttpRequest to load existing.html
initExistingHTML(); //this is function which populates loaded HTML, is not executed
</script>
</head>
<html>
existing.html:
<div>
<script type = "text/javascript">
function initExistingHTML() {
... // do some stuff
}
</script>
</div>
我如何可以加載existing.html
並運行該腳本它填充它?
這就是我以爲我在做什麼,你能提供一個如何實現這個目標的例子嗎? – Peter 2011-01-23 22:19:27