代码无法在iPhone

时间:2018-03-01 18:54:02

标签: javascript iphone

此代码适用于桌面,但不适用于iPhone。我是javascript的新手,并试图帮助修复此问题。任何帮助,将不胜感激!

<script>
    jQuery(document).ready(function () {

        jQuery(function () {
            jQuery(".monthly-table").hide();
            jQuery("#show-monthly, #show-annual").bind("click", function () {
                jQuery(".monthly-table, .annual-table").hide();
                if (jQuery(this).attr("id") == "show-monthly")
                {
                    jQuery(".monthly-table").show();
                } else
                {
                    jQuery(".annual-table").show();
                }
            });
        });

    });

    jQuery(document).ready(function () {
        jQuery('.toggler-pricing a').on('click', function () {
            jQuery('.toggler-pricing a').removeClass('active');
            jQuery(this).addClass('active');
        });
    });
</script>

0 个答案:

没有答案