我有一个 asp.net mvc4 应用程序,其中我有这种形式:
<form method="Post" action="/User/Validate_Expert_Decision" target="_parent">
<span>
<b style="color:red" >Votre avis</b>
<br />
<br />
<input type="radio" name="avis" value="1" checked>Validé        
<input type="radio" name="avis" value="2">Refusé        
<input type="radio" name="avis" value="3">Demande de spécification        
<input type="radio" name="avis" value="4">Demande d'analyse
<br />
<br />
<br />
</span>
<span>
<b style="color:red" >
Votre justification *
<b />
<br />
<br />
<textarea rows="16" cols="75" name="justification"></textarea>
</span>
<input type="hidden" name="elem" value="0" id="elem"/>
<p>
<input type="submit" name="submit">
<input type="button" name="cancel" value="Annuler" onClick="closebox()">
</p>
</form>
当单选按钮采用 2、3 或 4 作为值时,我需要将属性添加required
到 textarea ,即仅对于不需要输入的第一个值。justification
justification
那么,我该如何完成这项任务?