T&C 复选框 IE 问题
我在 IE 中的 T&C 复选框上遇到问题。即使用户没有选中该复选框,他们仍然可以通过。 FF& Chrome 工作正常。只有IE有这个问题,请帮我看一下代码。
<script> function accepttermandconditions() {
if(!accepttermandconditions_top()){ return false;}
<?php if($General->is_show_term_conditions()){?>
if(document.getElementById('termsandconditions').checked){
return true;
}else{
alert('<?php echo CHECKOUT_JS_TERMS_CONDITIONS_MSG;?>');
document.getElementById('termsandconditions').focus();
return false;
}
<?php
}
?>
if(!accepttermandconditions_bottom()){ return false;} }
希望有人真的可以帮助我。
谢谢。
I'm having an issue on the T&C checkbox in IE. Even if user did't checked the checkbox and they will still be able to pass through. FF & Chrome works fine. Only IE is facing this issue, please help me to have a look at the code.
<script> function accepttermandconditions() {
if(!accepttermandconditions_top()){ return false;}
<?php if($General->is_show_term_conditions()){?>
if(document.getElementById('termsandconditions').checked){
return true;
}else{
alert('<?php echo CHECKOUT_JS_TERMS_CONDITIONS_MSG;?>');
document.getElementById('termsandconditions').focus();
return false;
}
<?php
}
?>
if(!accepttermandconditions_bottom()){ return false;} }
Hope someone really can help me.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不管出于什么原因,听起来 IE 没有执行你的 JavaScript。找到答案的最简单方法是在 IE 中进行调试。如果您使用 IE8+,那就太好了,它内置了一个出色的调试器。如果使用 IE7 或更低版本,则需要 Visual Studio 调试器或 Microsoft Office 附带的调试器。
编辑:(看到页面正在运行)
您可以在页面底部看到:
Internet Explorer 在开始时失败。它说“对象不支持此属性或方法” - 这是因为 $ 未定义。
不知道为什么这仅在 IE 中被破坏,因为页面前面有 jQuery.noConflict() ,它取消了 $ 对象的定义。您应该仍然可以在上面的脚本中使用 jQuery().ready 而不是 $().ready。
For whatever reason, it sounds like IE is not executing your JavaScript. The easiest way to find the answer is to debug it in IE. If you're using IE8+, great, it has an excellent debugger built-in. If using IE7 or less, then you'll need the Visual Studio debugger or the one that comes with Microsoft Office.
EDIT: (Seen the page running now)
You have this at the bottom of the page:
Internet Explorer fails here at the start. It says "Object doesn't support this property or method" - which is because $ is undefined.
Not sure why this is broken in IE only, because you have jQuery.noConflict() earlier in the page, which un-defines the $ object. You should still be able to use jQuery().ready in the above script instead of $().ready.