我有一個Struts單選按鈕,我試圖從JavaScript中設置,但沒有成功。Struts從javascript設置單選按鈕值
下面是我試過的代碼和選項。
單選按鈕
<s:radio name = "myrdb"
id = "myrdb"
list = "#{'true':'Yes','false':'No'}"
onclick = "rdbFunction(this.value)" />
選項嘗試:
document.getElementById('myrdb').value = 'true';
document.getElementById('myrdb').attr('value', 'true');
document.getElementById('myrdb').set('value', 'true');
您正在渲染兩個單選按鈕。你認爲他們會有相同的'id'嗎?看看生成的HTML。 –
@AleksandrM我看着單選按鈕,他們沒有相同的ID不同。我需要按名稱獲取單選按鈕嗎? – devdar
好吧,我得到它的工作需要獲得由(myrdbtrue)的dom創建的id和設置checked = true – devdar