Browse Source

签名移除修复

laiguoran 5 years ago
parent
commit
e2b5b44269
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/public/js/profile.js

+ 1 - 1
app/public/js/profile.js

@@ -114,7 +114,7 @@ $(document).ready(function() {
         // 移除签名
         $('#delete-sign').click(function () {
             postData('/profile/sign/delete', {}, function (result) {
-                $('#sign-show').remove();
+                $('#sign-show').html('');
                 toast('移除成功', 'success');
             })
         });