3

$("#keyword-content").html()

生产

  <p>
    javascript
  </p>
  <p>
    ruby
  </p>
  <p>
    python
  </p>

我怎样才能将其转换为["javascript", "ruby", python"]

4

2 回答 2

6

您可以使用以下map方法:

var arr = $('#keyword-content p').map(function(){
      return $(this).text()
}).get()
于 2012-10-20T14:23:28.757 回答
0

像这样的东西:

var myArray = [];

$("#keyword-content p").each(function(index,item) {
    myArray.push($(item).text());
});
于 2012-10-20T14:25:48.670 回答