我已将 wordpress 更新到 3.5 并收到此错误,js 无法正常工作。
未捕获的类型错误:无法调用未定义的方法“ajax”
为什么我会收到此错误?
function goToIndexforsave() {
document.getElementById('sorted_successmsg_div').innerHTML = 'processing ...';
var img_save_url = 'http://www.holidayvillas4hire.com/index.php?page=sort_image&pid='+document.getElementById('image_sort').value;
$.ajax({
url: img_save_url ,
type: 'GET',
dataType: 'html',
timeout: 20000,
error: function() {
alert('Error loading agent favorite property.');
},
success: function(html) {
document.getElementById('sorted_successmsg_div').innerHTML = html;
}
});
return false;
}