博客列表 >$.ajax()方法——2018年4月11日23时32分

$.ajax()方法——2018年4月11日23时32分

白猫警长的博客
白猫警长的博客原创
2018年04月11日 22:30:42461浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>0410会员登录</title>
	<style>
		.box{
			width: 400px;
			height: 300px; 
			border: 1px solid #666;
			background-color: lightblue;
			margin: auto;
			padding: 10px;
		}
	</style>
</head>
<body>
	<div class="box">
		<h2>会员登录</h2>
		<form action="api/check.php" method="post">
			<p class="ops">
			<label for="name">邮箱:</label>
			<input type="email" name="name" id="email">
			</p>
			<p>
			<label for="password">密码:</label>
			<input type="password" name="password" id="password">
			</p>
			<p>
				<button>登录</button>
				<span id="tips"></span>
			</p>
		</form>
	</div>
</body>
</html>
 <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> 
 <script>
 	$(':input').blur( function(){

 		$.ajax({
 			// 请求服务器资源,必须是字符串
 			url:'api/demo.php',

 			// 客户端的请求类型:GET,POST
 			type:'GET',

 			data:$('form:first').serializeArray(),

 			success:function(msg,status,xhr){
 				// console.log(msg)
 				$('p span').empty()
 				$('.ops').append($(msg))
 			}
 		})

 	})

 </script>

运行实例 »

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


运行效果 图:

22.png


手抄作业:

1.jpg2.jpg

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议