Javascript 在 IE 和 FF 中被调用,但在 Chrome 中却没有被调用,为什么?
我有以下代码用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不得不问,您是否尝试从属性中删除
javascript:
?I have to ask, did you try removing
javascript:
from the attribute?可能是一些源问题。 因为它在 Chrome 中对我有用
Might be some source issues. Because Its work for me in Chrome