在我的 ASP.NET MVC4 中,我有两个单选按钮 rb1 和 return 以及两个文本框和 txt2 ...
每当检查 rb2 时,如何禁用我的文本框 txt2?
这是我的代码:
下面的代码可能在 html helpers 或 html 标签中
<input type="radio" id="rb1" value="r1" name="jrn" />
<input type="radio" id="rb2" value="r2" name="jrn" checked="checked"/>
<input type="text" name="txt1" id="Ret" value="v1" />
<input type="text" name="txt2" id="Dep" value="v2" />