我正在编写一个 jQuery 插件,我正在尝试这样做:
$(this).height>=options.maxHeight ?
$(this).css({overflow:"auto"}) :
$(this).css({overflow:"hidden"})
但是它不起作用,我以前在我的javascript中使用过这种方法。
这应该如何工作,只是我试图尽可能少地使用代码。
if($(this).height()>=options.maxHeight)
{
$(this).css({overflow:"auto"});
}
else
{
$(this).css({overflow:"hidden"});
}