我有一个奇怪的问题没有意义,但是,鉴于症状,也许更有经验的人可以投入一些想法。
简称
更长的解释
这是一个屏幕:
这是一个jQuery代码片段,它们都被卡住了
xhr.onload = callback();
xhr.onerror = callback("error");
// Create the abort callback
callback = xhrCallbacks[ id ] = callback("abort");
try {
// Do send the request (this may raise an exception)
xhr.send( options.hasContent && options.data || null ); // ===> IT HAPPENS HERE!
} catch ( e ) {
// #14683: Only rethrow if this hasn't been notified as an error yet
if ( callback ) {
throw e;
}
}
其次,我现在试图刷新页面,但它没有。它现在永久地被卡住了
JS没有错误,因为请求也没有在PHP上没有错误。
事实上,似乎某些元素也可能会被使用jQuery的$.get
或$.post
加载。它似乎只在Android上使用Chrome进行。 Firefox无论如何都运行良好。