我有一个页面需要动态检查HTML元素的存在,因此我需要知道正确的方法

最佳答案

您可以这样做:

$(function() {
  if ($('.myElement').length > 0) {
    console.log('There is one or more elements with class="myElement"');
  }
});

关于javascript - 用jQuery检查元素的存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10163488/

10-09 14:41