0

請求フィールドが自動的に配送フィールドと一致するようにしたいと考えています。テキスト値で機能させることはできますが、RADIO BUTTON を自動的に入力することはできません。私はこのコードを使用しています: http://jsfiddle.net/aDNH7/これを Javascript で保持したいと思います。

<script>
function FillBilling(f) {
  if(f.billingtoo.checked == true) {
    f.billingname.value = f.shippingname.value;
    f.billingcity.value = f.shippingcity.value;
  }
    if(f.billingtoo.checked == false) {
    f.billingname.value = '';
    f.billingcity.value = '';
  }
}
</script>
<td bgcolor="eeeeee">
<b>Mailing Address</b>
<br><br>
<form>
Name:
<input type="text" name="shippingname">
<br>
City:
<input type="text" name="shippingcity">


/> チェック中
/> 貯蓄

<br>
<input type="checkbox" onclick="FillBilling(this.form)" name="billingtoo">
<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="billingname">
<br>
City:
<input type="text" name="billingcity">


/> チェック中
/> 貯蓄

</p>
BUT, I want to add this to the form for both the BILLING and SHIPPING. And then I want the SHIPPING one to match up with the BILLING one if I check the box.

<!-- <td colspan="2"><p>
  <label>
    <input type="radio" name="acct" value="checking" id="acct_0" <?php if ($user_info['acct'] == "checking"){ echo "checked='checked'"; }?>/>
    Checking</label>
  <br />
  <label>
    <input type="radio" name="acct" value="savings" id="acct_1" <?php if ($user_info['acct'] == "savings"){ echo "checked='checked'"; }?>/>
    Savings</label>
  <br />
</p>
</td>-->
4

1 に答える 1

0

Javascript:

document.getElementById("acct_0").setAttribute("checked", "checked");

ここでJsfiddle

于 2012-12-12T21:53:28.490 に答える