博主信息
博文 26
粉丝 0
评论 0
访问量 21151
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
在线相册和aj
瘦不下来的博客
原创
842人浏览过

在线相册:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>jquery实战之在线相册管理器</title>
	<link rel="stylesheet" type="text/css" href="css/style.css">
	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript" src="js/demo.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="images/demo.jpg" value="images/zly.jpg"> -->
				<input type="text" name="img_url" id="img_url" placeholder="images/demo.jpg">
			</p>
	        <p>请选择图片类型:
	        	<input type="radio" id="rect" name="border" value="0" checked><label for="rect">直角</label>
	            <input type="radio" id="radius" name="border" value="10%"><label for="radius">圆角</label>
	            <input type="radio" id="circle" name="border" 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代码:

实例

<!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">
	/**
	 * $_post():jquery处理ajax中的post请求
	 * 基本语法:$.post(url, data, success, dataType)
	 * 参数说明: 
	 * 		url: 请求的地址
	 * 		data: 需要发送到服务器端的数据
	 * 		
	 * 		success(data,status,xhr): 执行成功的回调函数,
	 * 		回调参数: 1.data: 从服务器端返回的数据
	 * 				 2.status: 当前请求的状态
	 * 				 3.xhr: ajax对象
	 * 		通常我们只关心返回的数据:data
	 *
	 * 		dataType: 从服务器返回数据的格式
	 * 		xml, html, script, json, text, _default
	 * 		通常是'json',可省略,由系统自动判断
	 * 	 	
	 */
	
	$('button:first').click (function(){
	
			$.post(
				'api/user.php?m=login',
				{			
					"email": $('#email').val(),
					"password": $('#password').val()		
				}, 
				function(data){
					if (data == '1') {
						$('#tips').text('登录成功,正在跳转中...')
						setTimeout(function(){
							location.href = 'api/index.php'
						},2000)
					} else {
						$('#tips').text('邮箱或密码错误,请重新输入...')
						$('#email').focus()
						setTimeout("$('#tips').empty()",2000)	
					}
				}, 'json')
		*/
		
		
		return false
	})

			
</script>

运行实例 »

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


批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学