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 に答える