【发布时间】:2014-07-25 05:43:23
【问题描述】:
假设我有以下 HTML
<articles>
<article id="a1">
<!-- Content of article with id="a1" -->
</article>
<article id="a2">
<!-- Content of article with id="a2" -->
</article>
<article id="a3">
<!-- Content of article with id="a3" -->
</article>
</articles>
使用 jQuery,我做了以下操作
var x = $("#a2").html();
现在,变量x 将继续:
<!-- Content of article with id="a2" -->
但是,我希望 x 包含:
<article id="a2">
<!-- Content of article with id="a2" -->
</article>
我试过了:
var x = $("#a2").parent().html();
但这返回了所有三篇文章,这不是我想要的。我只想要文章 a2。我该怎么做?
谢谢。
【问题讨论】:
标签: jquery jquery-selectors element return-value