仅在 IE 中出现 window.open 错误 - 参数无效

发布于 2024-11-03 03:54:48 字数 408 浏览 6 评论 0原文

单击日历上的日期时,会出现一个简单的日历弹出窗口。下面的代码适用于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琴流音 2024-11-10 03:54:48

窗口名称不应有空格。尝试EditEvents

The window name shouldn't have a space. Try EditEvents.

べ映画 2024-11-10 03:54:48
window.open(theURL,winName,features);

例如:window.open('google.com','编辑事件','width=100'); //错误

window.open('google.com','EditEvents','width=100'); //True

=>
Edit Events //false

EditEvents //true

=>winName 没有空格。

window.open(theURL,winName,features);

ex: window.open('google.com','Edit Events','width=100'); //false

window.open('google.com','EditEvents','width=100'); //True

=>
Edit Events //false

EditEvents //true

=>winName doesn't have spaces.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文