123456789101112131415161718192021222324 |
- $('.m_suspension').on('click',function(){
- $('.m_signup_box').show();
- })
- $('.m_gb').on('click',function(){
- $('.m_signup_box').hide();
- })
- PublicAction.AjaxSend({CORID:'m_bm_bottom'/*操作ID*/});
- $('.m_bm_bottom').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- $('.m_signup_box').hide();
- $('.m_signup_box form input[type="text"]').val('');
- }
- // console.log(_html);
- },300)
-
- })
|