例如,如果我有一个类“可选”但没有url的图像,有没有办法用jQuery检测它?
<img class="optional" src="" />
$('.optional').each(function () { if (this.src.length > 0) { //if it has source } });