Blogger Information
Blog 33
fans 3
comment 1
visits 23312
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
jQuery实现相册管理(20180409课程示例一)2018/04/21 19:53
箭里飘香
Original
522 people have browsed it

通过jQuery实现页面中照片的添加、移动、删除

主页面DOM结构代码如下:

实例

<!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">
			</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>

运行实例 »

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

js脚本代码如下:

实例

$(function(){
	$('button.add').click(function(){
		//1.获取图片地址
		var img_url = $('#img_url').val()
		//1.1判断地址是否为空
		if (img_url.length == 0) {
			alert('请选择图片')
			$('#img_url').focus()
			return false
		}
		//2.获取图片边框样式
		var img_type = $(':radio:checked').val()
		//3.是否添加阴影
		var shadow = 'none'
		if ($(':selected').val() == 1) {
			shadow = '5px 5px 5px #888'
		}
		//3.创建图片元素并添加相关属性
		var img = $('<img>')
				.prop('src',img_url)
				.css({
					'width': 150,
					'height': 150,
					'border-radius': img_type,
					'border-shadow': shadow
				})
		//4.图片后面创建三个按钮实现移动与删除功能
		var before = $('<button>').text('前移')
		var after = $('<button>').text('后移')
		var remove = $('<button>').text('删除')
		var li = $('<li>').append(img,before,after,remove)

		//5.将图片添加到页面中
		li.appendTo('ul')

		//设置图片中按钮的功能
		before.click(function(){
			$(this).parent().prev().before($(this).parent())
		});
		after.click(function() {
			$(this).parent().next().after($(this).parent())
		});
		remove.click(function() {
			$(this).parent().remove()
		});
	});
})

运行实例 »

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

本实例通过jQuer实现对html中DOM元素控制的方式实现图片的添加、移动与删除功能

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