Blogger Information
Blog 33
fans 3
comment 0
visits 22853
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
ajax学习之一-post方法提交数据到后台20180410
MrZ的博客
Original
898 people have browsed it

一、学习心得

1,正式进入ajax学习阶段。

2,ajax与后台交互方法的学习,是后面学习php基础准备。

3,post方法是按照规定传入相关参数,数据以格式化传到后台对比并与服务器存储的数据做比较最终反馈结果给前端。

4,两种形式使用post方法,建议使用简洁方式。

二、学习演示截图

1.png

三、代码

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>AJ</title>
</head>
<body>
	<form method="post">
		<fieldset>
		<legend>用户登录</legend>
		<p><label for="username">用户名:</label>
            <input type="text" name="username" id="username">
		</p>
		<p>
			<label for="password">密 码:</label>
			<input type="password" name="password" id="password">
		</p>
		<p>
			<span id="tips" style="font-size: 1.2em;font-weight: bolder; color: red"></span><br>
			<button>登录</button>
		</p>
		</fieldset>
	</form>
</body>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>

<script type="text/javascript">
$('button:first').click(
function(){
	var url='user.php?m=login'
	var data= {
		'username':$('#username').val(),
		'password':$('#password').val()
	}


	var success=function(res){
		if (res=='1') {

			$('#tips').text('登陆成功,跳转中')
			setTimeout(function(){
				location.href='index.php'		
			},2000)
		}else{
		
			$('#tips').text('密码错误')
			$('#username').focus()
			setTimeout("tips.innerHTML=''",2000)
		}
	}


	var dataType='json'

	$.post(url, data, success, datatType)
	return false



	// $.post(
 //       'user.php?m=login',
 //       {
 //         	'username':$('#username').val(),
	// 	    'password':$('#password').val()
 //       },
 //      function(res){
	// 	if (res=='1') {

	// 		$('#tips').text('登陆成功,跳转中')
	// 		setTimeout(function(){
	// 			location.href='index.php'		
	// 		},2000)
	// 	}else{
		
	// 		$('#tips').text('密码错误')
	// 		$('#username').focus()
	// 		setTimeout("tips.innerHTML=''",2000)
	// 	}
	// }

	// 	)
	// return false
})

	

</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

四、手抄代码

QQ截图20180410183242.png

QQ截图20180410183330.png

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post