对不起。我无法单独使用 Google 找到答案。如何在我的项目中包含 jQuery 1.9.1 和 jquery Mobile?
编辑
我知道如何包含 javascript 文件。我的意思是说,jquery mobile 与 jQuery 1.9.1 不兼容。
请参阅此小提琴进行演示。
在上面的 jsFiddle 中包含 1.9.1 的 jQuery Mobile 框架会导致点击不起作用。jQuery 1.8.3 及以下的作品。
小提琴中的代码:
<div id='box'>TAP ME</div>
$(document).ready(function() {
$('#box').bind('tap',function(event) {
alert('Thanks!');
});
});