0

您好,我有许多带有“价格”类的文本框,我要做的就是为所有其他文本框提供与第一个文本框相同的值。这是我的代码,但它不起作用。

$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”

谢谢

4

4 回答 4

1

试试这个 JSFiddle Demo

$('input.price').val($('.price').eq(0).val())

或者这样

  $('input.price:gt(0)').val($('input.price').eq(0).val()); 

或使用第一个运算符。

$('input.price').val($('input.price').first().val());

你可以在任何你想要的事件中使用它。可能是点击,改变。

于 2013-03-08T05:25:15.623 回答
0

试试这个:

$(document).ready(function(){
    $('input.price:gt(0)').val($('input.price:eq(0)').val());
});

JSFIDDLE

于 2013-03-08T05:26:03.463 回答
0

这是小提琴

$(".price").on("change",function()
               {$(".price").val($(".price").first().val())
               });
于 2013-03-08T05:34:28.247 回答
0
  Try this:

  $(document).ready(function(){
     $(".section-1").find(".price").first().blur(function () {
              var firstprice=$(".section-1").find(".price").first().val();
              //alert("val"+ firstprice);
              if(firstprice)
              $(".section-1").find(".price").val(firstprice);
        });
  });
于 2013-03-08T05:36:52.827 回答