Javascript 在 IE 和 FF 中被调用,但在 Chrome 中却没有被调用,为什么?

发布于 2024-07-24 11:06:33 字数 451 浏览 8 评论 0原文

我有以下代码用于 aspx 页面上的按钮。 当它被点击时,它应该调用一个 javascript 来打印该 div 中的文本。 IE 和 IE 中一切都运行良好。 Firefox,但是当在 Chrome 中尝试时,就好像 OnClientClick 没有启动 javascript。 我没有收到任何错误,它现在可以在 IE 和 FF 中运行。

下面是调用 javascript 的按钮代码。

<asp:Button ID="btnEULAPrint" Text="Print" runat="server" ValidationGroup="EULA"
            OnClientClick="javascript:CallPrint('EULA');return false;"/>

有人可以分享任何想法或链接来为我指明方向吗?

谢谢

I have the following code below for a button on an aspx page. When it is clicked it should call a javascript that will print the text in that div. Everything works great in IE & Firefox but when it is tried in chrome it is as if the OnClientClick is not kicking off the javascript. I receive no errors and it works in IE and FF now.

Below is the code for the button that calls the javascript.

<asp:Button ID="btnEULAPrint" Text="Print" runat="server" ValidationGroup="EULA"
            OnClientClick="javascript:CallPrint('EULA');return false;"/>

Anyone have any ideas or links they could share to point me in a direction?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

叫思念不要吵 2024-07-31 11:06:33

我不得不问,您是否尝试从属性中删除 javascript:

I have to ask, did you try removing javascript: from the attribute?

我不会写诗 2024-07-31 11:06:33

可能是一些源问题。 因为它在 Chrome 中对我有用

Might be some source issues. Because Its work for me in Chrome

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