これらの4つすべてが私のコンピューターで素晴らしい火をつけます
$('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が正しく参照されていると確信しています
多分私のメタタグの1つがそれを殺しますか?
<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>