我有一个使用 jquery ajax 发布的演示。它可以在 Chrome 和 Firefox 上运行,但不能在 IE10 上运行。这是我的演示:http: //jsfiddle.net/44T5D/。请帮我解决这个问题。谢谢你的帮助。
编码:
$(function() {
$('.document').on('click', '.ajax', function(e) {
e.preventDefault();
// ajax request
$.ajax({
async: true,
cache: false,
type: 'post',
url: '/echo/html/',
data: {
html: '<p>This is echoed the response in HTML format</p>',
delay: 1
},
dataType: 'html',
beforeSend: function() {
console.log('Fired prior to the request');
},
success: function(data) {
console.log('Fired when the request is successfull');
$('.document').append(data);
alert(data);
},
complete: function() {
console.log('Fired when the request is complete');
}
});
});
});