javascript 在 Windows Server 2008 资源管理器 8 中不起作用

发布于 2024-10-30 19:19:26 字数 601 浏览 0 评论 0原文

我有一个 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文