您好,我有许多带有“价格”类的文本框,我要做的就是为所有其他文本框提供与第一个文本框相同的值。这是我的代码,但它不起作用。
$firstprice=$("."+$sectionwrapper).find(".price").first().val();
$("."+$sectionwrapper).find(".price:eq(0)").nextAll(".price").val($firstprice);
我哪里错了?任何帮助将不胜感激。
编辑
这是我的 HTML 代码
<div class="section-1">
<div id="bookin-ad-wrapper">
<div class="booking-wrapper booking-wrapper-5">
<ul>
<li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][5][price]" style=""></li>
</ul>
</div>
<div class="booking-wrapper booking-wrapper-6">
<ul>
<li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][6][price]"></li>
</ul>
</div>
<div class="booking-wrapper booking-wrapper-0">
<ul>
<li><label class="w50">Pris kr</label><input type="text" value="" class="price numeric required" name="txtSection[1][0][price]"></li>
</ul>
</div>
</div>
</div>
$sectionwrapper 表示类“section-1”
谢谢