jquery mobile $(html).click(不在手机上开火

时间:2013-06-14 14:38:26

标签: javascript jquery jquery-mobile mobile-safari

所有这四个都在我的电脑上发挥很好

$('html').click(function() { alert(1);});
$('body').click(function() { alert(2);});
$('html').on("click", function() { alert(3);});
$('body').on("click", function() { alert(4);});

这两个都很好。

$(".nav li").click(function() { alert(5);} );

所以我确定我正确引用了jquery和jquery移动

也许我的一个meta标签杀了它?

<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes" />  
<link rel="apple-touch-icon-precomposed" href="m3t.jpg"/>  
<link rel="apple-touch-icon" href="m3t.jpg"/>  
<link rel="stylesheet" type="text/css" href="styles/mainnav.css">

<script src="jquery.js"></script>
<script src="jqmobile.js"></script>

1 个答案:

答案 0 :(得分:0)

哎呀,原来我已经在我的css中设置了杀死它的z-index

感谢您寻找