我使用PHP創建測驗Web應用程序。每個問題由一個單獨的<label>
組成,並且有4個可能的選擇,使用radio buttons
來允許用戶選擇他/她的答案。單個問題的現有HTML看起來像:單擊文本以選擇相應的單選按鈕
<label for="349">What is my middle name?</label>
<br>
<input id="349" type="radio" value="1" name="349">Abe
<br>
<input id="349" type="radio" value="2" name="349">Andrew
<br>
<input id="349" type="radio" value="3" name="349">Andre
<br>
<input id="349" type="radio" value="4" name="349">Anderson
<br>
我想用戶有點擊與單選按鈕關聯的文本的選項。現在,用戶只能點擊單選按鈕 - 我發現這是一項非常繁瑣的任務。
我讀了Unable to select a particular radio button choice by clicking on the choice text,並提出了使標籤的for
和id
屬性匹配的建議。我已經做到了這一點,但仍然無法正常工作。
我的問題是:我希望能夠單擊<input type="radio">
對象的文本,而不是隻能夠選擇單選按鈕本身。我知道我以前閱讀過這篇文章,但似乎找不到解決我的問題的方法。任何幫助或建議非常感謝!
優越簡單。喜歡它當一個幾乎隱藏的標籤功能被重新發現 – foochow