我正在尝试提高脚本的性能。我想改进这个:
el.removeClass( classes ).css( "top",
( ( el.is(".ui-fixed") ||
el.is( ".ui-global" ) ||
el.is( ".ui-element" )
) && thisCSStop > 0 ) ? -9999 : 0 );
是不是可以组合
el.is(".ui-fixed") || el.is( ".ui-global" ) || el.is( ".ui-element")
如下所示:
el.is("one or two or three");
我无法让它发挥作用。
感谢您的帮助!
答案 0 :(得分:4)
el.is(".ui-fixed,.ui-global,.ui-element")