我遇到了一个非常烦人的问题。我添加了以下jQuery脚本,以便能够使用swipeleft
和swiperight
作为菜单:
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
现在,每当我点击菜单中的网址链接时,当我到达目标网页时,页面的样式就会超出格式,并且控制台中会显示以下警告。
jquery-2.1.4.min.js:4 Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
这是来自jquery-2.1.4.min.js:4
的代码:
f(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e
点击网址时会出现什么问题,这个问题出现了?在我添加上面的jQuery脚本之前,这不是问题。此外,如果我通过在浏览器中重新加载来重新加载具有警告的页面,页面的格式将恢复到应该如何。
有什么想法吗?
如果有人想看到这个,只需在下面发表评论,我会把链接。