列表切換.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>內(nèi)蒙</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>