我正面臨一個微小的問題..單選按鈕的onclick動作沒有執行。我試着用onchange事件爲好,但沒有用的..onclick事件沒有點擊發射
<label><input type="radio" name="search_type" id="search_type" value="name" onchange="by_name()">Enter the Name </label>
<input name="tag" type="text" id="search" maxlength="30">
<label><input type="radio" name="search_type" id="search_type" value="all" onchange="all()">All</label>
並單擊所有,
function all()
{
window.alert('hi');
}
你能幫助我用你的建議。(JS文件鏈接,以及)
嘗試添加'onclick'標籤。 'Onclick'應該在'radiobutton'上工作。處理事件後可能會寫入函數。 – CnapoB
重複http://stackoverflow.com/questions/8838648/onchange-event-handler-for-radio-button-input-type-radio-doesnt-work-as-one – chandu
爲什麼要用相同的名稱編號? –