新手提问:javascript中用window.open()为什么打不开新窗口?

<html><head><title>Openwindow实例</title><scriptlanguage="JavaScript">functionOpenWindo... <html>
<head>
<title>Openwindow实例</title>

<script language="JavaScript">
function OpenWindow()
{
Window.open('NewWindow.html',"height=500,width=300");
}
</script>
</head>
<body>
<form >
<h1>打开一个新的窗口实例</h1>
<input type=button value="新建窗口" onclick="OpenWindow()">
</form>
</body>

</html>
--------------------
以下是NewWindow.html
<html>
<head>
<title>空白网页</title>
</head>
<body>
<h1>这是一个新网页</h1>
<form><input type=button value="关闭窗口" OnClick="windowclose()"></form>
</body>
<script language="JavaScript">
function windowclose(){
Window.close();
}
</script>
</html>
点击新建窗口无反应
展开
 我来答
网海1书生
科技发烧友

2015-03-07 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26228

向TA提问 私信TA
展开全部
那会因为你把大小写搞错了
Window 错!Javascript中是不存在这个对象的!
window 这样才对!
miniappkFwV0962YhOPw
2015-03-07 · 请开发者输入账号签名
miniappkFwV0962YhOPw
采纳数:2709 获赞数:7887

向TA提问 私信TA
展开全部


Window.open('NewWindow.html',"height=500,width=300");
改为
window.open('NewWindow.html','newwindow','height=500,width=300');
原因:
Window,你写成了大写W。不对。
newwindow是弹出窗口的名字,可留空。但不能去掉它。
要写个更简单的话,改为这样。
window.open('NewWindow.html')
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式