一 JQUERY链式编程行颜色改变

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一 JQUERY链式编程行颜色改变相关的知识,希望对你有一定的参考价值。

代码:

<!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链式编程行颜色改变的主要内容,如果未能解决你的问题,请参考以下文章

JQuery的链式编程,隐式迭代是什么意思

JQuery-- 链式编程静态函数,自己制作jQuery插件

jQuery的链式编程和隐式迭代

jQuery插件编写及链式编程模型小结

[jQuery]jQuery链式编程

jQuery——链式编程与隐式迭代