我正在尝试禁用给定网站内页面上的超链接的Ajax调用。我在这里研究了jquery移动文档和其他问题。我认为这是正确的代码,顺序正确。但它不起作用。有谁知道我可能做错了什么?
<script src="/cmsroot/jquery-ui-mobile/js/jquery.js"></script>
<script>
$( document ).on( "mobileinit", function() {
$.extend( $.mobile , {
ajaxEnabled: false;
pushStateEnabled: false;
});
});
</script>
<script src="/cmsroot/jquery-ui-mobile/js/jquery.mobile-1.4.2.min.js"></script>
答案 0 :(得分:1)
我找到了答案。我的第一个问题是我不小心看了错误的文档集(jquery.mobile 1.2而不是1.4)。其次,我有语法问题:每个选项后分号而不是逗号。更正后的代码是
<script src="/cmsroot/jquery-ui-mobile/js/jquery.js"></script>
<script>
$( document ).on( "mobileinit", function() {
$.extend( $.mobile , {
ajaxEnabled: false,
pushStateEnabled: false
});
});
</script>
<script src="/cmsroot/jquery-ui-mobile/js/jquery.mobile-1.4.2.min.js"></script>