私の 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);
});
});
オペラの何が問題なのか誰にもわかりますか? 前もって感謝します!