码迷,mamicode.com
首页 > Web开发 > 详细

一 、JQUERY链式编程行颜色改变

时间:2019-09-04 23:11:49      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:func   hover   text   doctype   图片   lin   jquer   tle   ack   

代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="scripts/jquery-1.7.1.min.js"></script>
<script>
$(function () {
$(‘li‘).hover(function () {
$(this).css(‘background-color‘, ‘blue‘)
.prevAll().css(‘background-color‘, ‘yellow‘).
end().nextAll().css(‘background-color‘, ‘red‘);
},
function () {
$(this).css(‘background-color‘, ‘white‘).siblings().css(‘background-color‘, ‘white‘);
})
});
</script>
<meta charset="utf-8" />
</head>
<body>
<ul id="ul1">
<li>北京 </li>
<li>上海 </li>
<li>广州 </li>
<li>深圳 </li>
</ul>
</body>
</html>

效果图:

技术图片

一 、JQUERY链式编程行颜色改变

标签:func   hover   text   doctype   图片   lin   jquer   tle   ack   

原文地址:https://blog.51cto.com/yataigp/2435502

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!