1

使用以下 HTML 代码:

<ul class="column">
  <li><h2>Name</h2></li>
</ul>
<ul class="column">
  <li><h2>Address</h2></li>
</ul>
<ul class="column">
  <li><h2>Title</h2></li>
</ul>

如何仅替换第一个之间的文本<h2>

我试过了:

$(".column").first("h2").html("Replacing Name for another name");

但这不起作用。

任何想法?

4

3 回答 3

3

你有很多方法可以实现它:

$(".column:eq(0) h2").html("Replacing Name for another name");

或者:

$(".column:first h2").html("Replacing Name for another name");
于 2013-04-12T12:08:13.853 回答
2

尝试:

$(".column:first h2").html("Replacing Name for another name");
于 2013-04-12T12:08:28.107 回答
1

尝试

$(".column:eq(0) h2").html("Replacing Name for another name");

或者

$(".column:first h2").html("Replacing Name for another name");

有关更多详细信息,请检查

于 2013-04-12T12:09:41.503 回答