[Hỏi đáp] Xin code login không chuyển trang

The author of this message was banned from the forum - See the message
  Bài viết hay nhất2
Login không chuyển trang là không reload hay sau khi load vẫn ở trang đó?
The author of this message was banned from the forum - See the message
  Bài viết hay nhất4
tìm
Code:
<form action="{S_LOGIN_ACTION}" method="get">
...
</form>
chèn vào trong đó
Code:
<script type="text/javascript">document.write('<input type="hidden" name="redirect" value="' + location.pathname + '" />')</script>
The author of this message was banned from the forum - See the message
  Bài viết hay nhất6
đọc kĩ comment của phutu dùm cái chủ topic :|
The author of this message was banned from the forum - See the message
  Bài viết hay nhất8
Học viết code đi nha bạn, mình chỉ giúp 1 nửa thôi
Code:
$(form).submit(function (event) {
   event.preventDefault();
   if (($(this + ' input[name="username"]').val() || $(this + ' input[name = "password"]').val()) == '') { // Kiểm tra password và username
      alert('Vui lòng điền tên đăng nhập / password');
   } else {
      $.ajax({ // Chạy ajax
         url: '/login',
         type: 'post',
         data: $(this).serialize(),
         success: function (data) {
            // Hoàn thành ajax
         }

      });
   }
})
  Bài viết hay nhất9
ACP >> Modules >> HTML & JAVASCRIPT >> Javascript codes management >> [Hỏi đáp] Xin code login không chuyển trang Ajouter Create a new javascript

  • Title * : Login Redirect
  • Placement : In all the pages
  • Javascript Code * :
    Code:
    /* Login Redirect by devs.forumvi.com */
    $(function () {
       0 == _userdata.session_logged_in && ($("a[href^='/login']").attr("href", function () {
          if ("" == this.search || !/(\?|\&)redirect=.+/.test(this.search)) return "/login?redirect=" + location.pathname
       }), $('form[action^="/login"] input[name="redirect"]').length || $('form[action^="/login"]').append('<input type="hidden" name="redirect" value="' + location.pathname + '" />'))
    });
  Bài viết hay nhất10
You cannot reply to topics in this forum