检查某个元素是否存在

时间:2012-04-30 02:35:09

标签: html ruby-on-rails jquery-selectors haml

我使用简单的表单和HAML来制作视图,我想这样做:

- if ".nested-fields" in page
     # do something
- else
     # do anything

如果页面中有.nested-fields类的元素,请执行操作。如何从视图中验证元素的存在?

1 个答案:

答案 0 :(得分:0)

在jQuery中你可以这样做:

if ($(".nested-fields").length > 0){
  // do something here
}