12345678910111213141516171819202122232425262728293031323334 |
- $(function(){
-
- $('.public_signup').show();
- var _length = $('.public_signup li').length;
- if(_length>1){
- jQuery(".public_signup").slide({mainCell:".bd ul",effect:"topLoop",autoPlay:true,delayTime:1000,interTime:8000});
- }else{
- $('.public_signup .prev').hide();
- $('.public_signup .next').hide();
- }
- $('.public_signup .bd li').each(function(){
- var hid_i=$(this).find('.signup_form input[name="hid"]').val();
- if (hid_i == 3284) {
- $(this).find('div.signup_form').hide();
- };
- })
- // 关闭按钮显示、隐藏
- $('.cls').on('click',function(){
- $('.w_app_l').show();
- $('.public_signup').hide();
- })
- $('.w_app_l').on('click',function(){
- $(this).hide();
- $('.public_signup').show();
- })
- //报名验证提交的调用
- PublicAction.AjaxSend({CORID:'m_wapply_su'/*操作ID*/});
- })
|