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