在html字符串中查找多个标签

时间:2014-07-28 15:25:25

标签: javascript jquery html find

var findnumberoftags = "<p>hihih</p><h2></h2><li>one</li><li>two</li><p>iam the best</p><h1>yes</h1><h2></h2>"

我想在字符串中找到<h2>个标签的数量?我怎么能这样做?

OUTPUT: 2

2 个答案:

答案 0 :(得分:3)

将字符串作为jquery对象,然后您可以使用jquery方法来计算标记。

var findnumberoftags ="<p>hihih</p><h2></h2><li>one</li><li>two</li><p>iam the best</p><h1>yes</h1><h2></h2>";
alert($(findnumberoftags ).filter("h2").length)

Fiddle

答案 1 :(得分:1)

使用RegEx例如:

console.log( findnumberoftags.match( /<h2>/g ).length );