我们当前正在将jQuery版本从1.10升级到3.3.1
结果,我们还必须安装jquery.mobile v1.5.0(因为这是唯一与v3兼容的版本)
jquery.mobile正在向我的页面添加类以及其他div元素(例如SELECT
r.status,
LISTAGG(r.id,',') WITHIN GROUP(
ORDER BY
id
)
FROM
rechnungsdaten r
GROUP BY
r.status;
)
有没有一种方法可以停止jquery.mobile这样做/禁用它。这些新类损害了我页面的布局
答案 0 :(得分:3)
在CrearCompeticion.php
上禁用jQM的$.mobile.autoInitializePage
。
mobileinit
要手动初始化框架,请使用<head>
<!-- jQuery.js here -->
<script>
$(document).on("mobileinit", function () {
$.mobile.autoInitializePage = false;
});
</script>
<!-- jQuery Mobile.js here -->
</head>
。