demand.js 510 B

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