假設如下代碼如何在jQuery的一個變量選擇一個元素
<div class="hello">
<h2>I'm a header</h2>
</div>
<script>
foo = $('.hello');
</script>
如何從富選擇H2標籤和替換它的內容是什麼?
我基本上尋找相當於$('。你好> h2).html('新頭'),但在變量上。
假設如下代碼如何在jQuery的一個變量選擇一個元素
<div class="hello">
<h2>I'm a header</h2>
</div>
<script>
foo = $('.hello');
</script>
如何從富選擇H2標籤和替換它的內容是什麼?
我基本上尋找相當於$('。你好> h2).html('新頭'),但在變量上。
你是否在尋找:
foo = $('.hello');
foo.find('> h2').html('New Header');
var foo = $(".hello > h2")
我想你可以做類似下面
foo = $(".hello h2");
我簡化了我的示例代碼很多,假設div你好有一堆不同的標籤,我也想改變,但我想執行他們在「foo」 – tkaravou
@tkaravou我不明白 – NimChimpsky