Browse Source

Update resetpassword.htm

语法定义错误修复
tags/6.2.12
叙述、别离 1 year ago
parent
commit
749c14dfff
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/user/templets/resetpassword.htm

+ 2
- 2
src/user/templets/resetpassword.htm View File

@@ -27,7 +27,7 @@
<div class="form-group">
<label>找回方式</label>
<div class="input-group">
<select id="selType" name="type" class="form-control" onchange="handleChange">
<select id="selType" name="type" class="form-control" change="">
<option value="1" selected>通过邮件取回</option>
<option value="2">通过安全问题取回</option>
</select>
@@ -52,7 +52,7 @@
<?php obtaintheme('foot.htm');?>
<script>
$(document).ready(function () {
$('#selType').on('change', function() {
$("#selType").on("change", function() {
if (this.value == 2) {
$("#mail-box").hide();
} else {


Loading…
Cancel
Save