我有一張帶有選擇輸入單選按鈕的表格。無線輸入按鈕2具有值=「P2」或「P1」和以S開始的其餘部分的值作爲你可以看到下面基於無線電值更改鏈接按鈕名稱
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(false);" type="radio" value="P2"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(true);" type="radio" value="P1"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(true);" type="radio" value="S111"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(false);" type="radio" value="S112"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(true);" type="radio" value="S131"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(false);" type="radio" value="S132"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(true);" type="radio" value="S121"/>
<input id="test" name="purchaseChoice" class="radio" onclick="togglePrices(false);" type="radio" value="S122"/>
<a href='javascript: submitform("subsOptionform")' tabindex="14" class="right button blue">Subscribe</a>
我想有從訂閱的鏈路變化的標籤當選擇2個第一個單選按鈕時購買學分。
任何幫助表示讚賞。
感謝
你有完全相同的ID ** 8個**元素。祝你好運,以獲得任何工作。另外,你的代碼中沒有jQuery的舔。我會研究jQuery *做些什麼*然後嘗試重構你的代碼來使用它。 – Blender
大聲笑@Blender他們看起來像90年代初的代碼。 – nolabel
感謝您的回覆。基本上上面引用的代碼只是在瀏覽器上查看時複製的源代碼。有問題的頁面是用java開發的,並且最初使用html5和jQuery進行標記。事實上,我們桌面上的8個單選按鈕的呈現是通過jQuery實現的,以根據無線電選擇呈現不同的價格。我知道有一個特定的身份證沒有幫助。需要重新考慮爲什麼會有。 – gek