<form action="/Enterprise/member" >

</form>


function sendinvite(){

var sendinviteid = $('#sendinviteid');
sendinviteid.on('submit',function(ev){

ev.preventDefault();

if(1==2){
return false;
}

$.ajax({
url:"/xxx/xxx",
type:'POST',
data:sendinviteid.serialize(),
dataType:'json',
success:function(d){

if(d.status == 1){

alert("操作成功")

}else{

alert("数据异常!请重试!")
}


},error:function(){

alert("数据异常!请重试!")

}
});
});
}

相关文章:

  • 2021-12-21
  • 2021-12-04
  • 2021-12-08
  • 2022-01-17
猜你喜欢
  • 2021-07-19
  • 2021-11-09
  • 2022-12-23
  • 2021-11-29
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案