Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to use billingname[] and billingcity[] instead but I don't know how to write .value for these input. (Now I use ordinal number such as billingname1, billingname2 but I don't want ordinal number)

<script>
    function FillBilling(f) {
      if(f.billingtoo1.checked == true) {
        f.billingname1.value = f.shippingname.value;
        f.billingcity1.value = f.shippingcity.value;
      }
        if(f.billingtoo1.checked == false) {
        f.billingname1.value = '';
        f.billingcity1.value = '';
      }

      if(f.billingtoo2.checked == true) {
        f.billingname2.value = f.shippingname.value;
        f.billingcity2.value = f.shippingcity.value;
      }
        if(f.billingtoo2.checked == false) {
        f.billingname2.value = '';
        f.billingcity2.value = '';
      }
    }
    </script>



    <td bgcolor="eeeeee">
    <b>Mailing Address</b>
    <br><br>
    <form id="add_field">
    Name:
    <input type="text" name="shippingname">
    <br>
    City:
    <input type="text" name="shippingcity">
    <br>
    <input type="checkbox" onclick="FillBilling(this.form)" name="billingtoo1">
    <em>Check this box if Billing Address and Mailing Address are the same.</em>
    <p>
    <b>Billing Address</b>
    <br><br>
    Name:
    <input type="text" name="billingname1">
    <br>
    City:
    <input type="text" name="billingcity1">
    </p>

    <input type="checkbox" onclick="FillBilling(this.form)" name="billingtoo2">
    <em>Check this box if Billing Address and Mailing Address are the same.</em>
    <p>
    <b>Billing Address</b>
    <br><br>
    Name:
    <input type="text" name="billingname2">
    <br>
    City:
    <input type="text" name="billingcity2">
    </p>
    </form>
    </td>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
260 views
Welcome To Ask or Share your Answers For Others

1 Answer

If you're not going to give each field a unique identificator (maybe a id property), you have to iterate over all of them in order to get the value for each one:

$('input[name="billingname[]"]').each(function() { 
    this.value = f.shippingname.value; 
});

Not sure how the code actually works on your environment, but it should give you an idea.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...