我有页面通过 ajax 请求显示数据。但是在获取数据后,我找不到像使用 jQuery 一样正常工作的数据。所以我使用了这些功能
jQuery(document).ajaxComplete(function(){
var $productoverlay = jQuery('#product-details-overlay');
jQuery('#slider-related').tinycarousel({display:1});
jQuery('#fotorama').fotorama();
jQuery('#product-details-overlay .close-item').click( function(){
jQuery.when($productoverlay.fadeOut(500)).then(function() {
var productpos = $productoverlay.offset();
var itemlists = jQuery('#itemlists .item:last').offset();
jQuery('#itemlists').css({
height: (itemlists.top + 30) + 'px',
});
$productoverlay.remove();
});
});
});
它运行良好。在 ie 8 和 7 中签入时,ajaxcomplete 功能不起作用。有什么方法可以完美地在 ie 8 和 7 中工作。