bottom.js 815 B

12345678910111213141516171819202122232425262728293031323334
  1. $(function(){
  2. $('.public_signup').show();
  3. var _length = $('.public_signup li').length;
  4. if(_length>1){
  5. jQuery(".public_signup").slide({mainCell:".bd ul",effect:"topLoop",autoPlay:true,delayTime:1000,interTime:8000});
  6. }else{
  7. $('.public_signup .prev').hide();
  8. $('.public_signup .next').hide();
  9. }
  10. $('.public_signup .bd li').each(function(){
  11. var hid_i=$(this).find('.signup_form input[name="hid"]').val();
  12. if (hid_i == 3284) {
  13. $(this).find('div.signup_form').hide();
  14. };
  15. })
  16. // 关闭按钮显示、隐藏
  17. $('.cls').on('click',function(){
  18. $('.w_app_l').show();
  19. $('.public_signup').hide();
  20. })
  21. $('.w_app_l').on('click',function(){
  22. $(this).hide();
  23. $('.public_signup').show();
  24. })
  25. //报名验证提交的调用
  26. PublicAction.AjaxSend({CORID:'m_wapply_su'/*操作ID*/});
  27. })