使用jQuery验证body中的div

时间:2009-12-20 09:53:44

标签: jquery

使用jQuery,如何验证HTML页面正文中是否存在div?

2 个答案:

答案 0 :(得分:3)

存在任何div:

if ($("div").length > 0) {
  // theres a div
}

或具有ID的特定元素:

if ($("#id").length > 0) {
  // it exists
}

答案 1 :(得分:0)

var divExists = !!$('div').length;