我有这个 jQuery:
jQuery(".storyImg").each(
function(){
if(this.width() > this.height()){
jQuery(this).addClass("landscape");
} else if (this.width() < this.height()){
jQuery(this).addClass("portrait");
} else {
}
}
);
它似乎不起作用。我什至无法让它从函数内部发出警报。它肯定包含在 html 文件中,并且 .storyImg 类绝对正确。