简单的移动jQuery下拉菜单无法在移动设备

时间:2018-02-01 04:45:54

标签: javascript jquery css jquery-mobile

我的问题是,当我的手机上按下按钮时,它什么也没做。当以相同的分辨率点击PC时,它没有问题。我不知道该怎么办,我还没有在其他任何地方看到过修复。

以下是使用它的网站,因此您可以直接看到问题:http://www.briansamu.com

// This the jQuery

    $(document).ready(function() {

    $(".burger-nav").on("click", function() {

        $("header nav ul").toggleClass("open");
        // The open class sets the height of the UL to: height: auto;

    });
});

谢谢你提前。

2 个答案:

答案 0 :(得分:0)

手机的点击功能与浏览器不同。要解决这些问题,请使用Hammer Js来帮助处理所有针对移动设备的点击。

答案 1 :(得分:0)

这个问题是iphone还是ipad? 如果是这种情况,请尝试按钮而不是<a>标记

相关问题