Blogger Information
Blog 28
fans 0
comment 0
visits 14100
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
ajax-post应用--2018年4月10日23时38分上传
泰礴松的博客
Original
556 people have browsed it

本次课程学习了两个内容,一个是DOM的总结案例,一个相册管理器

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>在线相册管理器</title>
	<link rel="stylesheet" type="text/css" href="css/css.css">
	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript" src="js/dome.js"></script>
</head>
<body>
	<div class="wrap">
		<div class="header">
			<h2>在线相册管理器</h2>
			<p>
			<label for="img_url">请输入图片地址</label>
			<input type="text" name="img_url" id="img_url" placeholder="请输入图片地址">
			</p>
			<p>请选择图片类型:
				<input type="radio" name="border" id="rect" value="0" checked><label for="rect">直角</label>
				<input type="radio" name="border" id="radius" value="20%"><label for="radius">圆角</label>
				<input type="radio" name="border" id="circle" value="50%"><label for="circle">圆形</label>
			</p>
			<p>
				图片是否添加阴影:
				<select name="shadow">
					<option value="0" selected>不添加</option>
					<option value="1">添加</option>
				</select>
			</p>
			<p><button class="add">添加图片</button></p>
		</div>
		<div class="main"><ul></ul></div>
	</div>
</body>
</html>

运行实例 »

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

另一个是Ajax中post的用法

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>4.Ajax_POST</title>
</head>
<body>
	<form action="api/check.php" method="post">
		<fieldset>
			<legend>用户登录</legend>
			<p>
				<label for="email">邮箱:</label>
				<input type="email" name="email" id="email">
			</p>
			<p>
				<label for="password">邮箱:</label>
				<input type="password" name="password" id="password">
			</p>

			<p>
				<button>登录</button>
				<span id="tips" style="font-size:1.2em;font-weight: bolder;color:red"></span>
			</p>
			
			
		</fieldset>
	</form>
</body>
</html>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
	
	
	$('button:first').click (function(){
		//1.ajax-post提交的地址
		var url = 'api/user.php?m=login'

		//2.要提交到服务器的数据
		var data = {			
					"email": $('#email').val(),
					"password": $('#password').val()		
				}

		//3.设置执行成功的回调函数
		var success = function(res){
				if (res == '1') {
					$('#tips').text('登录成功,正在跳转中...')
					setTimeout(function(){
						location.href = 'api/index.php'
					},2000)
				} else {
					$('#tips').text('邮箱或密码错误,请重新输入...')
					$('#email').focus()
					setTimeout("$('#tips').empty()",2000)	
				}
			}

		//4.设置返回的数据格式为:json
		var dataType = 'json'

		//5.调用全局函数$.post()执行post请求
		$.post(url, data, success, dataType)

		
		
		//禁用默认提交
		return false
	})

			
</script>

运行实例 »

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

手写版

990227293.jpg1069574973.jpg

Correction status:Uncorrected

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!