1 Star 0 Fork 0

一腔诗意喂了狗/ajax

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
03-post请求方法.html 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
一腔诗意喂了狗 提交于 2017-09-14 10:16 . post请求版本
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ajax的get请求</title>
<script src="jquery.js"></script>
</head>
<body>
<form action="index.html" method="post" enctype="application/x-www-form-urlencoded">
<input type="text" name="username" placeholder="请输入用户名"><br><br>
<input type="password" name="password" placeholder="请输入密码"><br><br>
<button type="submit">登录</button>
</form>
</body>
<script>
// AJAX:Asynchronous Javascript And XML
//异步的js与xml
// 在不重载的页面的条件下更新页面数据
$('form').submit(function (ev) {
// 阻止默认事件的发生
ev.preventDefault();
console.log('阻止事件')
// 获取表单数据,自动将其转换成字符串序列对
var data = $(this).serialize();
// $.get({
// url: 'index.html',//请求路径
// data: data,//请求数据
// success: function (reaData) {//请求回成功调函数
// // 内部参数:是服务端返回的相应数据
// }
// })
$.post('index.html',data,function(resData){
})
})
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/YiQiangShiYiWeiLeGou/ajax.git
[email protected]:YiQiangShiYiWeiLeGou/ajax.git
YiQiangShiYiWeiLeGou
ajax
ajax
master

搜索帮助