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
答案 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)
答案 1 :(得分:1)
使用RegEx例如:
console.log( findnumberoftags.match( /<h2>/g ).length );