我的 ajax 代码在 opera 中不起作用,但是,它适用于所有其他主要浏览器:
$(function() {
$("a").on('click', function(e) {
var href = $(this).attr('href');
$.ajaxSetup({
beforeSend:function(xhr) { $('div.imagePlace').animate({height: '10px'}); },
});
$.ajax();
e.preventDefault();
setTimeout(function() {
$.ajax({
url: href,
dataType: "html",
success:function(result) {
$('.imagePlace').html(result)
$('.imagePlace').animate({height: '500px'})
}
});
}, 400);
});
});
谁能看到歌剧中的问题是什么?提前致谢!