lanbowan.js 549 B

123456789101112131415161718192021222324
  1. $('.m_suspension').on('click',function(){
  2. $('.m_signup_box').show();
  3. })
  4. $('.m_gb').on('click',function(){
  5. $('.m_signup_box').hide();
  6. })
  7. PublicAction.AjaxSend({CORID:'m_bm_bottom'/*操作ID*/});
  8. $('.m_bm_bottom').on('click',function(){
  9. setTimeout(function(){
  10. var _html = $('.alert-container .alert-content').html();
  11. if(_html == '提交成功'){
  12. $('.m_signup_box').hide();
  13. $('.m_signup_box form input[type="text"]').val('');
  14. }
  15. // console.log(_html);
  16. },300)
  17. })