我在struts2中有一个图片标签。我想检查是否检查了radiobutton,因为它的onclick()事件...请帮助我。
图片代码:
<input type="image" src="../image/edit.jpg" alt="img" width="25" height="25" value="Edit" name="moduleMenu"/>
单选按钮:
<s:iterator status="stat" value="modNameList">
<s:radio list="moduleName" name="modNameCheck" id="modNameCheckId"/>
<br>
</s:iterator>
答案 0 :(得分:1)
<s:iterator status="stat" value="modNameList">
<s:radio list="moduleName" name="modNameCheck" id="modNameCheckId" onclick = "validate(this.value)" />
<br>
</s:iterator>
<script>
function validate(value){
alert(value);
}
</script>
//or u can pass this.id
<s:iterator status="stat" value="modNameList">
<s:radio list="moduleName" name="modNameCheck" id="modNameCheckId" onclick = "validate(this.id)" />
<br>
</s:iterator>
<script>
function validate(id){
alert(id);
}
答案 1 :(得分:0)
此示例可以帮助您:
var moduleNameRadio=document.getElementsByName("modNameCheck");
for(var i=0;i<moduleNameRadio.length;i++)
{
if(moduleNameRadio[i].checked){
alert('Radio button selected');
//Add your code here....
}
}
您可以找到有关此here的更多信息!