博客列表 >4.3jQuery中的选择器

4.3jQuery中的选择器

吃不起土的少年的博客
吃不起土的少年的博客原创
2018年04月04日 20:01:40591浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>403</title>
	<style type="text/css">
	.box{
		background-color: #f4f4f4;
		width: 600px;
		height: 450px;
		margin: auto;
		overflow: hidden;
		text-align: center;

	}
	.box ul{
		float: left;
		margin: auto;

	}
	.box ul li{
		padding: 10px 10px;
	}

	.box ul li span{
		width: 30px;
		height: 30px;
		text-align: center;
		line-height: 30px;
		display: block;
	}
	.box ul li a {
		display: block;
		margin-top: -30px;
		margin-left: 60px;
	}
	.color{
		color:lightcoral;

	}


	</style>
</head>
<body>
<div class="box">
<h2>jQuery选择器</h2>
<ul>
	<li>
		<span>1</span><a href="">最新电影</a>
	</li>
	<li>
		<span>2</span><a href="">国语电影</a>
	</li>
	<li>
		<span></span><a href="">外国电影</a>
	</li>
	<li>
		<span>4</span><a href="">高清电影</a>
	</li>
	<li>
		<span>5</span><a href="">动画电影</a>
	</li>
</ul>

<input type="serach " name="serachbox" placeholder="查找影片/动漫">
<button type="submit" name="submit">搜索</button>
<button type="reset" name="reset">重填</button>
</div>

	<script type="text/javascript" src="jQuery/jquery-3.3.1.js"></script>
<script type="text/javascript">
$('li a').addClass('color')
$('li').css('listStyleType','none')
$('li:nth-child(5)~*').css('backgroundColor','lightgreen')
$('span').css('backgroundColor','lightblue')
$(':empty').text('3').css('color','orange')
$('a:contains("外")').css('color','green')
$('li').last().css('color','white')
$('input').css('background-color', 'skyblue')
$('button:reset').css({
		'background-color':'lightblue',
		'color':'white',
		'width':'80px',
		'height':'30px',
		'border-radius':'5px'
	})

</script>
</body>
</html>

运行实例 »

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

微信图片_20180404195806.png

总结:本节课老师介绍了  jQuery中 的各种选择器  以及一些简单的实例 。 要想学好jQuery 选择器一定要熟练,毕竟只有找准元素 才能对症下药。

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