Skip to content

Commit

Permalink
Merge pull request #1 from GitCHQL/GitCHQL-patch-1
Browse files Browse the repository at this point in the history
edit.jsp修改
  • Loading branch information
GitCHQL authored Feb 13, 2018
2 parents 45b8307 + 2492f5d commit d8ca328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/edit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
<tr>
<td>客户性别</td>
<td>
<input type="radio" name="gender" value="male" id="male" <c:if test="${customer.gender eq 'male'}"/>checked="checked"/>
<input type="radio" name="gender" value="male" id="male" <c:if test="${customer.gender eq 'male'}">checked="checked"</c:if>/>
<label for="male">男</label>
<input type="radio" name="gender" value="female" id="female" <c:if test="${customer.gender eq 'female'}"/> checked="checked"/>
<input type="radio" name="gender" value="female" id="female" <c:if test="${customer.gender eq 'female'}">checked="checked"</c:if> />
<label for="female">女</label>
</td>
<td>
Expand Down

0 comments on commit d8ca328

Please sign in to comment.