我在一个组中有 4 个单选按钮,例如 1、2、3、4,并且与 radiobutton1 一起还有两个输入文本框。当我选择radiobutton1时,这些文本框被启用,但在选择单选按钮 2、3、4时——文本框被禁用。选择单选按钮 2、3、4并禁用文本框后,如果我选择返回单选按钮 1,则应再次启用文本框。默认情况下(在第一次加载页面时),选择单选按钮 1 并启用文本框
这是我使用 Razor 视图引擎在 MVC3 中编写的 HTML 代码
@Html.RadioButtonFor(m => m.Search, "rb1", new { Checked = "true", id = "1" })radio 1
<td>@Html.TextBoxFor(m => m.textbox1, new { style = "width:11%" })
<td>@Html.TextBoxFor(m => m.textbox2, new { style = "width:11%" })
@Html.RadioButtonFor(m => m.Search, "rb2", new { id = "2" })radio 2
@Html.RadioButtonFor(m => m.Search, "rb3", new { id = "3" })radio 3
@Html.RadioButtonFor(m => m.Search, "rb4", new { id = "4" })radio 4
我需要在最少的代码行中使用 jquery 来做到这一点。有什么建议么?