ems需要指定为一个 Array、List,或者Map
如下:<form:radiobuttons path="company" items="${companyOptions}"/>
在使用Map的情况下,map条目的键被用作值, map条目的值被用作显示的文本标记。也可以使用一个定制的对象,提供“itemValue”属性存放值,“itemLabel”属性存放文本标记
~如果你认可我的回答,请及时点击采纳为满意回答按钮
~~手机提问的朋友在客户端右上角评价点满意即可。
~你的采纳是我前进的动力
~~O(∩_∩)O,记得好评和采纳,互相帮助,谢谢。
aspnet mvc 中不使用服务器控件,那个是webform的
mvc中用的是html的控件
在后台是无法获取html控件id的
MVC 跟webform 的用法是不同的
public ActionResult GetValue()
{
ChangePasswordModel model1 = new ChangePasswordModel();
model1OldPassword = "111";
model1NewPassword = "222";
return thisJson(model1);//返回对象到前台
}
这样返回的model1对象就会传递到result中去,前台可以直接使用resultNewPassword来取值
如下
$ajax(
{
url: "GetValue", //表示提交给的action
type: "post", //提交方法
datatype: "json",//数据类型
success: function (result) { //返回的结果自动放在resut里面了
alert(resultNewPassword);
}
});
<html>
<head>
<title>Index</title>
<script src="//Scripts/jquery-151js" 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>
因为form表单的enctype编码方式不同导致的;enctype 属性规定在发送到服务器之前应该如何对表单数据进行编码。
默认地,表单数据会编码为 "application/x->
<script type="text/javascript" src="//Scripts/jquery-132js"></script>
<script type="text/javascript">
function Setdanbaoren(b) {
$("#danbaoren")attr("disabled", b "" : "disabled");
}
</script>
<table>
<tr> <td>
<%=HtmlRadioButton("Zqifdanbao","YES",false, new {@id="radbtnY",onclick="Setdanbaoren(true)" })%>是
<%=HtmlRadioButton("Zqifdanbao", "NO", true, new { @id = "radbtnN", onclick = "Setdanbaoren(false)" })%>否
</td>
<td>
<%=HtmlTextBox("DbaorenName", null, new { @class = "txtBox char20", @id = "danbaoren", disabled = "disabled" })%>
</td>
</tr>
</table>
路径问题 请注意你在form中的路径是"/"而这个"/"是针对于WEB服务器的根目录 而不是你项目的根目录 你可以看一下你发送的URL请求 是没有项目名称的 而在controller中设置的RequestMapping路径是以项目名为根目录
基于Razor视图引擎(MVC3以上)的写法。
View:
@using (HtmlBeginForm("Sort", "YourControllerName"))
{
<input type="submit" value="NewsType" />
}
Controller的写法不变
以上就是关于radio在spring mvc标签中怎么表示全部的内容,包括:radio在spring mvc标签中怎么表示、asp.net mvc2如何在后台获取前台控件的id、mvc ajax传json对象后台怎么获取里面的值并放入数据库中等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)