2
目前,我這樣寫代碼 -如何在打開之前填充新窗口?
chatWindow = window.open("chatWindow.html", "Chat Window",
resizable=0,width=700,height=600);
var currentUserElement = chatWindow.document.createElement("currentUserElement");
currentUserElement.setAttribute("id", "currentUserElement");
currentUserElement.setAttribute("value",currentUserName);
然而,有一個方法可以讓我先做的createElement()部分調用之前對window.open()?
讓服務器首先創建它。 :) – epascarello