index.js 605 B

123456789101112131415161718
  1. $(function(){
  2. jQuery(".forestBox_slide").slide({titCell:".slide_hd ul",mainCell:".slide_mian ul",autoPage:true,effect:"fold",autoPlay:true,vis:1,trigger:"click"});
  3. $('.slide_hd ul li').html('')
  4. })
  5. //报名验证提交的调用 底下报名
  6. PublicAction.AjaxSend({CORID:'int-buttom'/*操作ID*/});
  7. $(function(){
  8. $('.submit_area .int-buttom').on('click',function(){
  9. setTimeout(function(){
  10. var _html = $('.alert-container .alert-content').html();
  11. if(_html == '提交成功'){
  12. $('.int-c').val('');
  13. }
  14. console.log(_html);
  15. },300)
  16. })
  17. })