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>
查看全文
相关阅读:
微信小程序【消息推送服务器认证C# WebAPI】
bootstrap-table表格导出
EntityFramework Code-First教程(一)
Ubuntu 中的VI和vim
【转载】Ubuntu安装之,硬盘分区
ubuntu中文件夹的作用
Linux常用命令
详解Linux安装GCC
修改Linux下的文件以及文件夹的权限
Y460 安装ubuntu 12.04系统黑屏,登录界面黑屏
原文地址:https://www.cnblogs.com/HD/p/101408.html
最新文章
下次遇到这种游戏,这种抽奖你还点吗?
巧妙解决windows下 copy命令不接受太长路径的问题
jenkins 启动slave时,找不到合适的java程序
为什么V8引擎这么快?[转]
mpvue 未找到入口 app.json 文件
windows下设置PHP环境变量
Laravel 添加路由文件
解决importerror no module named mysqldb
flume 1.8 安装部署
git命令-切换分支
热门文章
Python 字符串转JSON; 先装字典在转JSON; json.dumps(d)
Git错误:error: The following untracked working tree files would be overwritten by merge:
phpstrom2018
laravel 在linux环境下解决.htaccess无效和去除index.php
Vue教程:Class 与 Style 绑定(四)
Vue教程:计算属性computed与侦听器watch(三)
Vue教程:简介(一)
U盘安装CentOS7.3教程
微信小程序分包加载
vue watch数组或者对象
Copyright © 2011-2022 走看看