Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML 要素の存在を動的に確認する必要があるページがあります。したがって、これを行う正しい方法を知る必要があります。
あなたがすることができます:
$(function() { if ($('.myElement').length > 0) { console.log('There is one or more elements with class="myElement"'); } });
$('#id').length === 0; // element does not exist $('#id').length > 0; // element exists