リクエストに含まれる値に基づいて、ラジオ ボタンをオンに設定する必要があります。以下は私のJSPで使用したコードです
<input type="radio" name="status" id="status" value="Active" checked="<c:if test="${posting.postingStatus eq 'Active'}">checked</c:if>">
Active
<input type="radio" name="status" id="status" value="Closed" checked="<c:if test="${posting.postingStatus eq 'Closed'}">checked</c:if>">
Closed
テキスト「checked/>Active」と「checked/>Closed」の別のラジオボタンとともにラジオボタンを取得しています
別のコードセットを使用してみました
<c:choose>
<c:when test="${posting.postingStatus eq 'Active'}">
<input type="radio" name="status" id="status" value="Active" checked="checked"/>
Active
<input type="radio" name="status" id="status" value="Closed"/>
Closed
</c:when>
<c:otherwise>
<input type="radio" name="status" id="status" value="Active" />
Active
<input type="radio" name="status" id="status" value="Closed" checked="checked"/>
Closed
</c:otherwise>
不適切な結果で2倍になっています。
誰でもこれで私を助けることができますか?