请问下: 如果在jsp 中获取一组 radio 的checked值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问下: 如果在jsp 中获取一组 radio 的checked值相关的知识,希望对你有一定的参考价值。

如同调查问卷形式:
Q1 对应 a,b,c,d 四个答案
Q2 对应 a,b,c,d 四个答案
Q3 对应 a,b,c,d 四个答案
。。。。
每个答案是一个radio,我如何获取表单中每个问题的答案?(即如何保存每个问题的radio对应的checked值?) 请赐教,谢谢

function check(browser)

document.getElementById("answer").value=browser

</script>
</head>

<body>
<p>What\'s your favorite browser:</p>
<form>
<input type="radio" name="browser" onclick="check(this.value)"
value="Internet Explorer" />Internet Explorer<br />
<input type="radio" name="browser" onclick="check(this.value)"
value="Firefox" />Firefox<br />
<input type="radio" name="browser" onclick="check(this.value)"
value="Netscape" />Netscape<br />
<input type="radio" name="browser" onclick="check(this.value)"
value="Opera" />Opera<br />
<br />
Your favorite browser is: <input type="text" id="answer" size="20" />
</form>
</body>

给你段代码 有问题在问吧
参考技术A 自己上google。。这个问题,百度你不该来。。。。

请问elementui 表格的el-radio 选中某一行,拿到某一行的数据

请问elementui 表格的el-radio 选中某一行,拿到某一行的数据

参考技术A

第一列添加:

<el-table-column label="" width="50">
<template scope="scope">
<el-radio :label="scope.$index" v-model="radio" @change.native="getCurrentRow(scope.$index)"></el-radio>
</template>
</el-table-column>12345

效果: 

以上是关于请问下: 如果在jsp 中获取一组 radio 的checked值的主要内容,如果未能解决你的问题,请参考以下文章

JSP中怎样获取radio的值

JSP中读取的radio值为啥是on?

JSP中如何获取radio 或checkbox的值

js中,请问如何获取radio值

请问在Eclipse下如果对jsp文件进行可视化编辑??

jsp中怎样获得表单中radio的回显信息?