无法在 IE 7 中按下按钮
我有一个按钮,我在其中定义了一些 CSS。
<input type="button" class="button_enable" onclick="xxxxxxxx" >
该按钮在所有浏览器中都可以正常工作,但在 IE7 中不行。甚至没有网络请求,或者单击按钮时没有任何效果。请帮我。否则我在打开我的网站时会发出警告 IE7 很可怜,不要使用它:)
I have a button in which I have defined some CSS.
<input type="button" class="button_enable" onclick="xxxxxxxx" >
This button working fine in all browsers but Not n IE7. There is not even a network request, or any effect when the button is clicked. Please help me. or else I give an alert on opening my website that IE7 is pathetic dont use it :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ie7 中经常发生两种情况:
当您单击该按钮时,它可能会给您一个js错误,因为Internet Explorer(尤其是旧版本)对错误的限制要严格得多,例如您不能使用“delete”等保留字作为函数名称,否则它将返回错误。
There are two things that often happens with ie7:
When you click the button, it may gives you an js-error, because internet explorer (especially old versions) are far more restrictive for errors, for instance you cannot use reserved words like "delete" as function names, or it will return an error.