响应式菜单不在手机上工作

时间:2013-09-02 17:54:11

标签: html css responsive-design

我的新响应式菜单不适用于菜单中没有的页面。响应式菜单在计算机上的小屏幕上运行良好,但在手机中却无效。

有什么问题? http://www.nattklubbar.net/saddas

1 个答案:

答案 0 :(得分:0)

之前已经提出过类似的问题,这会给链接带来帮助:https://stackoverflow.com/a/10722760/2012433

如果此页面没有给您一个好的答案,请更改

on("click", function(){...})

为:

on("click touchstart", function(){...});

这将绑定click和touchstart事件。

希望这会有所帮助:)