WinHandle=window.open('',winName,features);
var form1 = WinHandle.document.createElement("form");
And I have something like this
WinHandle.form1.setAttribute("id",id);
WinHandle.form1.setAttribute("method","post");
WinHandle.form1.setAttribute("action",target);
當我執行該代碼我米歌廳以下腳本錯誤:發佈的JavaScript內的形式
Winhandle.form1 is null.
任何一個可以幫我嗎?
這是因爲使用對象表示法('Winhandle.form1')需要對id的引用。使用'form1.setAttribute'或'WinHandle.document.getElementsByTagName('form')[0] .setAttribute'。 – Michal 2011-05-05 14:50:08