我正在使用fancybox,但我收到以下错误:
Property or method not supported... (i am translating from italian)
jquery-last-version.js
Line:2479
character:4
它适用于Firefox,Chrome,Safari和IE9 ......但是对于IE8,它没有。
它有什么用?
这是代码:
$("#select_customer").click(function () {
var url = $(this).attr("href");
$.fancybox({
'type' : 'iframe',
'href' : "customer.php?mode=select_customer_box",
'zoomOpacity' : true,
'overlayShow' : true,
'width' : 350,
'height' : 250,
'zoomSpeedIn' : 500,
'zoomSpeedOut' : 500,
'autoScale' : true,
'onClosed' : function () {
if ($("#search").length > 0) {
$("#search").trigger('click');
}
else {
location.replace($(location).attr('href'));
}
}
});
return false;
});
非常感谢Federico