1

我有一个文件(aa.html)包含以下内容:

 <p> Item1 </p>
 <p> Item2 </p>
 <p> Item3 </p>

我可以用这个来阅读它:

$.get('aa.html', function(data) {
alert(data);
});

我怎么知道里面的项目数(或计数<p>)?

4

1 回答 1

1
$.get('aa.html', function(data) {
  var dom = $('<div/>').append(data);
  alert("# of <p> elements: " + dom.find('p').length);
});
于 2012-11-28T07:10:02.177 回答