123456789101112131415161718 |
- $(function(){
- $('.select_list').on('click','a',function(){
- var Tname=$(this).find('span').html();
- $(this).addClass('on').siblings().removeClass('on');
- // console.log(Tname);
- $(this).parent().siblings('input').val(Tname)
- })
- //报名验证提交的调用
- PublicAction.AjaxSend({CORID:'demand_buttom'/*操作ID*/});
- $('.demand_cenrer .in_mobile').keyup(function(){
- $('.demand_cenrer .text_hiden').hide();
- $('.demand_cenrer .in_mobile').css('border-color','#F4F4F4')
- })
- })
|