多用this,少用选择器$(window).load(function() {
$(".cur").each(function(){
if($(this).width()>$(this).height())
{
$(this).css({"height": "100%","margin-left":"-15%"});
}
else {
$(this).css({"width":"100%","margin-top":"-15%"});
}
})
});
多用this,少用选择器$(window).load(function() {
$(".cur").each(function(){
if($(this).width()>$(this).height())
{
$(this).css({"height": "100%","margin-left":"-15%"});
}
else {
$(this).css({"width":"100%","margin-top":"-15%"});
}
})
});