は、私は2つのラジオボタンを作成し、次のコードがあるとします。JavascriptとHTML - onclickの
<li id="foli517" class=" ">
<label class="desc" id="shippingChoice" for="Field517_0">
Shipping Options
</label>
<div>
<input id="shippingChoice" name="Field517" type="hidden" value="" />
<span>
<input id="shipping1" name="Field517" type="radio" class="field radio" value="$2.00 Shipping Fee" tabindex="13" checked="checked" />
<label class="choice" for="Field517_0" >
$2.00 Shipping Fee</label>
</span>
<span>
<input id="Field517_1" name="Field517" type="radio" class="field radio" value="I will pick up the items (free shipping)" tabindex="14" />
<label class="choice" for="Field517_1" >
I will pick up the items (free shipping)</label>
</span>
</div>
</li>
どのように私はjavascript関数が持つID「mySpan」とスパンの内部HTMLを更新するonclickを実装します2番目のラジオボタンをクリックすると "FREE"と表示され、それ以外の場合は "NOT FREE"と表示されます。
document.getElementById(WHAT GOES HERE).onclick = function() {
//what goes here?
};
コードの書式を改善してください。このような –