仅在 IE 中出现 window.open 错误 - 参数无效
单击日历上的日期时,会出现一个简单的日历弹出窗口。下面的代码适用于 Opera、FF 和 Chrome,但不适用于 IE6-8。它在底部出现页面错误
,并显示错误无效参数
。
<div class="day-number">1</div>
<td class="calendar-day" onclick="window.open('http://www.cal.com/admin/editevents.php?day=2&month=4&year=2011',
'Edit Events', 'scrollbars=1,width=600,height=475');">
有人可以帮助我并根据 IE 找出我做对了但错了的事情吗?
I have a simple calendar popup window come up when a date on the calendar is clicked. The code below works in Opera, FF and Chrome but not in IE6-8. It comes up with the Error on Page
at the bottom and shows the error invalid argument
.
<div class="day-number">1</div>
<td class="calendar-day" onclick="window.open('http://www.cal.com/admin/editevents.php?day=2&month=4&year=2011',
'Edit Events', 'scrollbars=1,width=600,height=475');">
Could someone help me out and spot what I'm doing right but wrong according to IE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
窗口名称不应有空格。尝试
EditEvents
。The window name shouldn't have a space. Try
EditEvents
.例如:
window.open('google.com','编辑事件','width=100'); //错误
=>
Edit Events //false
EditEvents //true
=>winName 没有空格。
ex:
window.open('google.com','Edit Events','width=100'); //false
=>
Edit Events //false
EditEvents //true
=>winName doesn't have spaces.