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>
查看全文
相关阅读:
vim编辑器介绍
Linux基本命令
Linux之文档与目录结构
远程连接Linux
VMware与Centos系统安装之重置root密码
关于学习观
mysql行转列,函数GROUP_CONCAT(expr)
<a>超链接标签,<button>按钮标签,实现返回跳转
2019年10月20日第一次参加自学考试
disabled属性对form表单提交的影响
原文地址:https://www.cnblogs.com/HD/p/101408.html
最新文章
尝试加载 Oracle 客户端库时引发 BadImageFormatException。问题记录
pqgrid对json数据的绑定
LINQ / LINQ to SQL / LINQ to XXX 它们到底有什么区别
ASP.NET程序中常用的三十三种代码
SyBase Powerdesigner生成数据库详细表
asp.net C#发送邮件类
Asp.net EasyUI中的combogrid实现分页功能
Asp.net Ibatis 增、删、改、查
VS2012 asp.net mvc 4 运行项目提示:"错误消息 401.2。: 未经授权: 服务器配置导致登录失败"
ASP.NET多文件上传实例
热门文章
sql2008“备份集中的数据库备份与现有的xxx数据库不同”解决方法
asp.net+nopi生成Excel遇到设置单元格值null问题
完美卸载oracle11g步骤
vs2010 未能将脚本调试器附加到计算机上的进程。已附加了一个调试器
Repeater分页代码
Mac下安装ipython与jupyter
python开发之virtualenv与virtualenvwrapper讲解
centos7安装python3 以及tab补全功能
Linux下的python3,virtualenv,Mysql、nginx、redis等常用服务安装配置
Linux系统基础优化及常用命令
Copyright © 2011-2022 走看看