欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ajax_jQuery封装后的写法

程序员文章站 2022-07-15 14:31:16
...

 

/**********Jquery封装ajax*****post*****提交*********/
jquery对ajax进行了封装

$.post("selectRegCusBagNumAndBagPla",{"registerCustomInfoId":registerCustomInfoId},function(result){ 
    		 
    $('#changGolfBagForm').find('[name=bagcheckPlaceType]').val(result.bagcheckPlaceType);
            
    $('#changGolfBagForm').find('[name=bagcheckNumber]').val(result.bagcheckNumber);
});