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);
});
上一篇: 位运算
下一篇: JQuery的ajax完整写法示例