<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script src="jquery-1.7.2.min.js"></script>
        <script src="jquery.form.js"></script>
         <script>
       //ajaxForm
        var optionss = { 
            dataType:"text", 
            type:'post', 
            url: "chuli.php", 
            beforeSubmit:showRequest,  
            success:showResponse,
            clearForm:true
        }; 
        $('#form1').ajaxForm(optionss);
        function showRequest() {    }
        function showResponse(data){  
            alert(data);
        }   
         </script>
    </head>
    <body>
        <form action="chuli.php" method="post" id="form1">
            <input type="text" name="name" />
            <input type="text" name="sex" />
            <input type="submit" value="提交"/> 
        </form>
        <hr />
        <form action="chuli.php" method="post" id="form2">
            <input type="text" name="name" />
            <input type="text" name="sex" />
            <input type="button" id="tijiao" value="提交"/> 
        </form>
    </body>
    <script>
        //ajaxSubmit
            $("#tijiao").click(function(){
                $("#form2").ajaxSubmit({
                    success:function(data){
                        alert(data);
                    }
                })
            });
        </script>
</html>

最新文章

  1. 1、SQL Server自动化运维 - 备份(一)业务数据库
  2. JDBC进行批处理
  3. Docker实践(2)—虚拟网络
  4. node的实践(项目二)
  5. Unity3d中C#使用指针(Unsafe)的办法(转)
  6. HDU 5293 Tree chain problem 树形dp+dfs序+树状数组+LCA
  7. nodejs 调用 OC 方法
  8. NodeJS下访问SQL Server
  9. (五)学习CSS之line-height属性
  10. 用Set中元素做条件查询
  11. 转:VC中MessageBox的常见用法
  12. hdu 5586 sum
  13. [Redux] Extracting Action Creators
  14. 将网站部署到服务器上出现_STORAGE_WRITE_ERROR_问题
  15. 初步探究java中程序退出、GC垃圾回收时,socket tcp连接的行为
  16. thinkphp5.0无限极分类及格式化输出
  17. LeetCode 81 - 搜索旋转排序数组 II - [二分+暴力]
  18. 机器学习入门11 - 逻辑回归 (Logistic Regression)
  19. 关于C#资源文件的相关操作
  20. Python3基础 iter+next 进行迭代时超出了范围 产生StopIteration异常

热门文章

  1. Angular2入门:TypeScript的类型 - 类型、null、undefined
  2. FFmpeg封装格式处理2-解复用例程
  3. jquery只能输入数字
  4. JSONP和HttpClient的区别
  5. Maven + SSM + Kaptcha 实现用户登录时验证码的获取(问题:302 Found)
  6. Servlet—Cookie(显示用户上次访问时间、显示商品浏览历史)
  7. canvas-star0.html
  8. canvas-tangram.html
  9. Runtime和Process
  10. python内置小工具