window.location
sets the URL of your current window.
(window.location
设置当前窗口的URL。)
To open a new window, you need to use window.open
.(要打开一个新窗口,您需要使用window.open
。)
This should work:(这应该工作:)
function ToKey(){
var key = document.tokey.key.value.toLowerCase();
if (key == "smk") {
window.open('http://www.smkproduction.eu5.org', '_blank');
} else {
alert("Kodi nuk ?sht? valid!");
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…