列表切换.png
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
ul {
background-color: antiquewhite;
float:left;
width:500px;
height:500px;
}
</style>
<script src="script/jquery-3.2.1.js"></script>
<script>
$(function () {
$("#ul1").mouseover(function () {
$("li").hover(function () {//指向
$(this).css({ "color": "red", "cursor": "pointer" });
}, function () {//移开
$(this).css("color", "black");
}).click(function () {
$(this).appendTo($("#ul2"));
});
});
$("#ul2").mouseover(function () {
$("li").hover(function () {//指向
$(this).css({ "color": "red", "cursor": "pointer" });
}, function () {//移开
$(this).css("color", "black");
}).click(function () {
$(this).appendTo($("#ul1"));
});
})
});
</script>
</head>
<body>
<ul id="ul1">
<li>北京</li>
<li>内蒙</li>
<li>河北</li>
<li>广州</li>
<li>天津</li>
<li>福建</li>
<li>江西</li>
<li>湖北</li>
<li>湖南</li>
<li>吉林</li>
<li>湖南</li>
<li>黑龙江</li>
<li>山东</li>
</ul>
<ul id="ul2">
<li>陕西</li>
<li>河南</li>
<li>四川</li>
<li>贵州</li>
<li>云南</li>
<li>海南</li>
<li>宁夏</li>
<li>甘肃</li>
<li>新疆</li>
<li>西藏</li>
<li>青海</li>
</ul>
</body>
</html>
网友评论