質問

I have this array:

var arr  = ['<p id="p1">Paragraph 1<p>', '<p id="p2">Paragraph 2<p>', '<p id="p3">Paragraph 3<p>']

How can I get the text Paragraph 3 from this array?

役に立ちましたか?

解決

You can use:

$(arr[2]).prop('innerHTML');

or:

$(arr[2]).html();

Fiddle

他のヒント

You can strip the inner text by chopping up the string using the split() method.

<script>

var arr  = ['<p id="p1">Paragraph 1<p>', '<p id="p2">Paragraph 2<p>', '<p id="p3">Paragraph 3<p>']

/* Even works with closed <p> element */

var arr  = ['<p id="p1">Paragraph 1</p>', '<p id="p2">Paragraph 2</p>', '<p id="p3">Paragraph 3</p>']

alert(arr[2].split('>')[1].split('<')[0])
</script>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top