结果窗口在那里?
结果窗口在哪里?
结果窗口在哪里?
2016-11-06
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow()
{
if(confirm("确定打开新窗口吗?"))
{
var url = prompt("请输入您需要打开的网站的地址","http://baidu.com");
window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes, width=400, height=400");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>举报