0

所有这四个都在我的电脑上火得很好

$('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 mobile

也许我的一个元标签会杀死它?

<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>
4

1 回答 1

0

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

感谢您的关注

于 2013-06-14T15:13:34.040 回答