我有這樣的代碼:HTML寫入新窗口中打開的問題
<div class="col3">
<a id = "training-launch-button" href="javascript:void(0);" title=" My title here" class="button" onClick="Test();">Launch</a>
</div>
function Test() {
var new_window= window.open('','Ratting','width=550,height=170,0,status=0,resizable=1');
new_window.document.createElement("div");
document.getElementsByTagName('div')[0].innerHTML = '<ol><li>html data</li></ol>';
}
東西是不正確的,我沒有看到有序列表項? 我最終想在新窗口中構建一些HTML。
看看創建頁面的來源 – CosminO
getElementsByTagName返回一個包含多個元素的數組,ocument.getElementsByTagName('div')[0] .innerHTML可能會更好。或者只使用id和getElementById。 – fijter
用chrome打開它並右擊 - > inspectElement,檢查錯誤並在這裏粘貼相關錯誤請 – pythonian29033