我的网站刚刚开始扭曲,但仅在铬上

My site just started distorting out of no where but only on chrome

本文关键字:网站 刚刚开始 我的      更新时间:2023-09-26

突然间,我的网站开始在chrome mut safari上失真,Mozilla很好。 当我查看控制台时,出现此错误

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience.

在我的终端中,它说这个

[26/Feb/2016 01:50:19] "GET /static/posts/js/jquery.bootstrap-autohidingnavbar.js?_=1456469408048 HTTP/1.1" 200 5979. Why is this happening?

您可能正在使用同步 ajax 请求。

如果您运行

$.ajax({async:false,url:"http://www.google.com"});

在 Chrome 上,您将收到相同的警告。

您必须删除async: false选项以防止发生此警告。

因此,您可能以同步方式发送请求,这是一个坏主意,因为它会阻塞主javascript线程,使页面无响应。因此警告。

PS:您的"终端"上的登录,我认为无关紧要,因为从我在这里读到的内容来看,jquery.bootstrap-autohidingnavbar根本没有使用 ajax。