javascript 在 Windows Server 2008 资源管理器 8 中不起作用
我有一个 Web 应用程序,位于 Windows Server 2008 内的 IIS 7 上, Web 应用程序有一个调用 JavaScript 函数的按钮:
<td align="left">
<button name="openWin" type="button" onclick="openAccountWin('<%# GlobalUrl+"mypage.aspx?name="+Eval("biz") %>')">Company page</button>
</td>
<script type="text/javascript">
function openAccountWin(url) {
debugger;
top.location.href = url;
}
当我按下资源管理器上的按钮时,没有任何反应。 如果我在 Firefox 中执行它,它会起作用! 当我对位于 win 7 站和 iis 7 中的相同应用程序(相同代码)执行相同操作时,它也可以工作!
我启用了 JavaScript 调试, 我将浏览器受信任站点降低到最低,并将该页面添加到受信任站点。 一定是探索者的问题...
i have a web application that sits on IIS 7 inside a windows serve 2008,
The web application has a button that calls a javascript function:
<td align="left">
<button name="openWin" type="button" onclick="openAccountWin('<%# GlobalUrl+"mypage.aspx?name="+Eval("biz") %>')">Company page</button>
</td>
<script type="text/javascript">
function openAccountWin(url) {
debugger;
top.location.href = url;
}
when i push the button on the explorer, nothing happens.
if i do it in firefox it work!
when i do the same on a same application (same code) that sits in win 7 station with iis 7 too, it works too!.
i enabled javascript debugging,
i lowered to the minimum the explorer trusted sites, and add the page to trusted sites.
it must be an explorer problem...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论