jQuery 中的 is() 函式可以用來判斷物件是不是特定的 html element

HTML

<select>
    <option>Johnson</option>
</select>

Javascript

$('select').click(function() {
    // True
    $(this).is('select');
});
Categories: jQuery