我想用用户使用open方法输入的网站创建一个新窗口,但似乎找不到问题的答案。
// beginning of input
var input = document.createElement("input")
input.setAttribute("value","Create Window")
input.setAttribute("type","button")
input.id = "input";
document.body.appendChild(input)
// end of input
// beginning of input2
var input2 = document.createElement("input")
input2.setAttribute("value", "close window")
input2.setAttribute("type","button")
input2.id = "input2";
document.body.appendChild(input2)
// end of input2
function createWindow(){
var prompt0 = prompt("what is the name of the website that you want to go to:")
open("prompt0","newWindow","height=500,width=400,toolbar=1,titlebar=1,menubar=yes")
}
没有错误,但是没有期望结果的窗口。预期结果是用户输入网站的窗口。
最佳答案
您将变量错误地传递给open
,它不应在其周围加上引号,因为这会使它成为字符串。
var prompt0 = prompt("what is the name of the website that you want to go to:")
open(prompt0,"newWindow","height=500,width=400,toolbar=1,titlebar=1,menubar=yes")
关于javascript - 无法打开带有提示()中的网站URL的窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57613928/