-2
$(...)
  .find(...)
  .if()
  .something
  .else()
  .otherthing
  .end();

如果我们可以在 jQuery 中做到这一点,我们就不需要在原生 javascript 中做到这一点。它更具表现力。

4

2 回答 2

0

你可以写一个 if else 语句。使用以下格式

var sampleBoolean; //Assign this to something
//Ex: sampleBoolean = $("sampleDiv").is(":visible");

//Begin logic
if (!sampleBoolean) {
    //Do this
}
else {
    //Do this
}
//End logic
于 2013-03-11T17:02:20.270 回答
0

检查a是否有一个类“class”,否则如果有id“#uniqueid”,最后是默认值:

if( $('a').is('.class') ) {

} else if ($('a').is('#uniqueid')) {

} else {

}

.is() 的文档:

http://api.jquery.com/is/

于 2013-03-11T17:08:06.380 回答