我试图通过依赖单选按钮选择在一个div中加载不同的局部视图。当用户单击“个人”按钮时,应显示部分视图,如果单击“业务”,则应显示“业务部分”视图
我的观看页面代码是
<script type="text/javascript">
$(function () {
$("[name=RegesterHere]").on('change', function () {
var $radio = $(this);
$.ajax({
url: '@Url.Action("GetRegisterForm", "Home")',
data: RegesterHere = $radio.val(),
type: 'GET',
success: function (data) {
$("#loadpartial").html(data);
}
});
});
});
</script>
<h2>GetRegisterForm</h2>
<table>
<tr>
<td colspan="1">@Html.LabelFor(m => m.RegesterHere)</td>
<td colspan="2">@Html.RadioButtonFor(m => m.RegesterHere, "Individual") Individual
@Html.RadioButtonFor(m => m.RegesterHere, "Business") Business</td>
</tr>
</table>
<div id="loadpartial">
</div>
我的控制器代码是
[HttpGet]
public ActionResult GetRegisterForm(string RegesterHere)
{
if (RegesterHere == "Individual")
{
return PartialView("IndividualPartialViewName");
}
else
{
return PartialView("BusinessPartialViewName");
}
}
当我运行此代码时,会直接显示第二个局部视图。请帮助我点击任何单选按钮然后应加载相应的局部视图
答案 0 :(得分:0)
您可能无法获得实际检查过的单选按钮值。您可能需要尝试此操作以获取已检查的单选按钮值:
var value = $("input[name='RegesterHere']:checked").val();
然后在ajax调用中使用它:
data: RegesterHere = value,