123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // 热门资讯
- var m_Huxing_lunbo = new Swiper('.m_zx_lunbo', {
- loop : true,
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.5,
- slideToClickedSlide: true
- });
- // $('.m_switch .on').prev().addClass('in');
- $('.bmclick').on('click',function(){
- $('.m_bmbox').show();
- $(this).hide();
- })
- $('.m_bmboxbj').on('click',function(){
- $('.m_bmbox').hide();
- $('.bmclick').show();
- })
- $('.m_bmgb').on('click',function(){
- $('.m_bmbox').hide();
- $('.bmclick').show();
- })
- // 报名
- PublicAction.AjaxSend(
- {
- CORID:'m_buttom', /*操作ID*/
- }
- );
- $('.submit_area .m_buttom').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- console.log(_html);
- if(_html=='提交成功'){
- $('.m_bmgb').click();
- $('body input[type="text"]').val('');
- }
- },300)
-
- })
-
- // 报名
- PublicAction.AjaxSend(
- {
- CORID:'m_buttom1', /*操作ID*/
- }
- );
|