ASP.NET MVC3中单选按钮的值如何赋值到数据库表

<formaction=""method="post"style="text-align:center"><table><tr><thstyle="height:50px... <form action="" method="post" style="text-align:center">
<table>
<tr>
<th style="height:50px;font-size:26px;">
关于本项目的培训课程是否满意?</th>
</tr>
<tr style="height:50px">
<td>
<input type="radio" name="satis" value="1" />满意

<input type="radio" name="satis" value="2" />较满意

<input type="radio" name="satis" value="3" />欠满意
</td>
</tr>
<tr style="height:50px">
<td>
<input type="button" value="提交" onclick="" />
</td>
</tr>
</table>
</form>

我想点击提交按钮后能把单选按钮里的Value值赋到数据库中表里面的一个字段,应该怎么实现呢?比如表是Student,里面有个字段是Value。
请帮一下我,万分感谢。
展开
 我来答
jibaohong
推荐于2016-02-23
知道答主
回答量:31
采纳率:0%
帮助的人:21.8万
展开全部
<html>
<head>
<title>Index</title>
<script src="../../Scripts/jquery-1.5.1.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$(".radio").click(function () {
if ($(this).attr("checked") == true) {
$("#statis").val($(this).val());
}
});
});
</script>
</head>
<body>
<div>
<form action="" method="post" style="text-align: center">
<table>
<tr>
<th style="height: 50px; font-size: 26px;">
关于本项目的培训课程是否满意?
</th>
</tr>
<tr style="height: 50px">
<td>
<input type="radio" class="radio" name="satis1" value="1" />满意
<input type="radio" class="radio" name="satis1" value="2" />较满意
<input type="radio" class="radio" name="satis1" value="3" />欠满意
<input id="statis" name="statis" type="hidden" />
</td>
</tr>
<tr style="height: 50px">
<td>
<input type="button" value="提交" onclick="" />
</td>
</tr>
</table>
</form>
</div>
</body>
</html>
追问
就是利用 hidden 控件来控制 单选按钮 中值的传递吗?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式