12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- $(function(){
- var _height = $(window).height();
- console.log(_height);
- $('.lunbo_box').height(_height);
- var m_Huxing_lunbo = new Swiper('.m_lunbo', {
- loop : true,
- // spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.5,
- slideToClickedSlide: true,
- nextButton: '.swiper-button-next',
- prevButton: '.swiper-button-prev',
- });
- $('.m_xf').on('click',function(){
- $('.Navigation').toggle();
- })
- $('.m_bmclick').on('click',function(){
- $('.m_bm_box').show();
- $('.Navigation').hide();
- })
- $('.m_gb_box').on('click',function(){
- $('.m_bm_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_bm_box').hide();
- $('.m_bm_box form input[type="text"]').val('');
- }
- console.log(_html);
- },300)
-
- })
- })
|