現在、私はこのようなコードを書いています-
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);
ただし、window.open()を呼び出す前に、最初にcreateElement()部分を実行する方法はありますか?