ajax--阻止表单提交

  1. ajax-利用event机制阻止表单提交
    $(function(){
       $('#AA').click(function(event){
          event.preventDefault();
          $.post('a.php',function(data){
              console.log(data);
           })
       })
    })

     

  2. 通过表单属性

     

你可能感兴趣的:(php)