用js控制div跟随鼠标移动,鼠标点击后,鼠标离开,div留在当前点击的位置怎么做

如题所述

你要的应该是拖拽效果,可以通过jq插件做

http://www.runoob.com/jqueryui/example-draggable.html

基本原理就是鼠标按下修改div的left和top(或者right/bottom)。鼠标离开不变。

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<Style>
#test{
position:absolute;
}
</style>
<script>
$(document).mousedown(function(){
       $(this).mousemove(function(e){
$("#test").css({ "left": e.pageX+"px", "top": e.pageY+"px" }); 
           $(document).mouseup(function(){
               $(this).unbind('mousemove');
           })
       })
   })
</script>
</head>
<body>
<div id="test">ssssssssss</div>
</body>
</html>

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答