我尝试删除主题的所有javascript,更新服务器中与注释相关的文件(本地也会发生相同的错误)
问题是这个文件导致的(很明显,您在测试中没有禁用这个文件)
http://www.faf.fi/wp-content/themes/faf/scripts/js/functions.js
在我的浏览器中阻止该脚本可以解决这个问题,但我认为正是脚本的这一部分失败了。。
$(\'form\').submit( function(){
var form = $(this);
if ( validateForm( this ) ) {
$.post(
form.attr(\'action\'), //url A string containing the URL to which the request is sent
form.serialize(), //data A map or string that is sent to the server with the request.
//success A callback function that is executed if the request succeeds
function(response, status, request){
// do something with response
alert( stripTags(response) );
}
//dataType The type of data expected from the server (text, xml, json)
);
}
//Prevent default
return false;
});
您看到的警报是由该函数生成的。我不知道问题的原因是什么,也不知道如何解决它(我不是JS专家),但我很确定这个函数是问题的根源。
希望这有帮助。