请问这个需求应该怎么实现?
我想要在prompt对话框中输入网址,点击确定打开该网页,下面是我的代码,不能实现功能,请问我改怎么写呢?谢谢。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
var address=prompt("请输入网址:");
if(address!=null){
window.open(address,'_blank','width=500,height=500,top=100,left=100');
}else{
document.write("请输入网址!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>