此代码适用于桌面,但不适用于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>