zoukankan
html css js c++ java
[JavaScript]鼠标拖动
代码很简单:
<div id="divMove" style="POSITION: absolute;left:300;top:300" onselectstart="return false" onmousedown="MouseDown(this)" onmousemove="MouseMove()"> <table width="150" cellpadding="0" cellspacing="0" border="1"> <tr> <td height="30" bgcolor="#cccccc">title</td> </tr> <tr> <td height="100"><p align="center">testMove</p></td> </tr> </table> </div> <SCRIPT LANGUAGE="JavaScript"> <!-- var currentMoveObj = null; var relLeft,relTop; function MouseDown(obj) { currentMoveObj = obj; currentMoveObj.style.position = "absolute"; relLeft = event.x - currentMoveObj.style.pixelLeft; relTop = event.y - currentMoveObj.style.pixelTop; } window.document.onmouseup = function() { currentMoveObj = null; } function MouseMove() { if(currentMoveObj != null) { currentMoveObj.style.pixelLeft=event.x-relLeft; currentMoveObj.style.pixelTop=event.y-relTop; } } //--> </SCRIPT>
查看全文
相关阅读:
linux 查看父进程号
gitlab
诺基亚C6常识详解
C#.net书籍列表
表链接
Limu:JavaScript的那些书(转载)
Oracle 多行记录合并/连接/聚合字符串的几种方法
关于有锁iPhone的常识(转载)
not in与not exists性能比较
多表连接查询
原文地址:https://www.cnblogs.com/HD/p/101408.html
最新文章
仿人立方Web Works&jQuery关系图效果
jianchiwang
Django系列教程:三、动态视图和动态Url
PDF复制文字到Word中太过混乱的解决方法
Django系列教程:[X]学习中的常见问题(不定期更新)
Django系列教程:五、模板的使用
Django系列教程:六、模型(一)
Django系列教程:八、Django中的管理工具Admin
Django系列教程:二、视图和Url配置
Django系列教程:七、模型(二)
热门文章
Django系列教程:四、模板
Django系列教程:一、Django的安装和入门
linux 查看指定父进程号
zabbix 邮箱报警
密钥权限管理
iptables 白名单
history 添加时间戳
ES
去掉nginx版本号
zabbix监控TCP连接数
Copyright © 2011-2022 走看看