T&C 复选框 IE 问题

发布于 2024-11-05 20:21:13 字数 617 浏览 0 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

故事还在继续 2024-11-12 20:21:13

不管出于什么原因,听起来 IE 没有执行你的 JavaScript。找到答案的最简单方法是在 IE 中进行调试。如果您使用 IE8+,那就太好了,它内置了一个出色的调试器。如果使用 IE7 或更低版本,则需要 Visual Studio 调试器或 Microsoft Office 附带的调试器。

编辑:(看到页面正在运行)

您可以在页面底部看到:

<script type="text/javascript">
$().ready(function() {
    if(eval(document.getElementById('coda-slider-1')))
    {
        $('#coda-slider-1').codaSlider();
        //jQuery.noConflict(); var $j = jQuery;
    }
}); 
</script>

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:

<script type="text/javascript">
$().ready(function() {
    if(eval(document.getElementById('coda-slider-1')))
    {
        $('#coda-slider-1').codaSlider();
        //jQuery.noConflict(); var $j = jQuery;
    }
}); 
</script>

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.

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