在 iPad ios 5.1 中,https://s140452.gridserver.com/property/4123(横向视图)
单击“显示详细信息”按钮在 iPad 上执行大约需要 15 秒。有时它会导致移动 Safari 崩溃。它会在 chrome 或 firefox 中立即发生。
难道我做错了什么?
$j('#locations').delegate('.sidebar-expand', 'click', function(){
var $me = $j(this),
$locations = $j('#locations');
if($locations.hasClass('expand')) {
$locations.removeClass('expand');
} else {
$locations.addClass('expand');
}
});