检查是否使用cshtml检查html radiobutton

时间:2015-10-06 07:33:31

标签: c# asp.net razor

我一直在谷歌搜索解决方案,但我找不到任何东西。我想检查是否使用cshtml检查了HTML单选按钮。这就是我现在所拥有的:

<input type="radio" name=question id="V1A1" /> Yes
<input type="radio" name=question id="V1A2" /> No
string V1A1 = Request.Form["V1A1"];

2 个答案:

答案 0 :(得分:1)

您可以使用jquery:

$('#V1A1').prop('checked') 

答案 1 :(得分:0)

如果您使用的是JQuery:

$('#V1A1').is(':checked')