$(...)
.find(...)
.if()
.something
.else()
.otherthing
.end();
如果我们可以在 jQuery 中做到这一点,我们就不需要在原生 javascript 中做到这一点。它更具表现力。
$(...)
.find(...)
.if()
.something
.else()
.otherthing
.end();
如果我们可以在 jQuery 中做到这一点,我们就不需要在原生 javascript 中做到这一点。它更具表现力。
你可以写一个 if else 语句。使用以下格式
var sampleBoolean; //Assign this to something
//Ex: sampleBoolean = $("sampleDiv").is(":visible");
//Begin logic
if (!sampleBoolean) {
//Do this
}
else {
//Do this
}
//End logic
检查a是否有一个类“class”,否则如果有id“#uniqueid”,最后是默认值:
if( $('a').is('.class') ) {
} else if ($('a').is('#uniqueid')) {
} else {
}
.is() 的文档: