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