代码驿站移动版
频道导航
HTML/Xhtml
CSS
JavaScript
HTML5
PHP教程
ASP.NET
正则表达式
AJAX
ThinkPHP
Yii
MySQL
MariaDB
Oracle
MongoDB
Redis
DedeCMS
PHPCMS
帝国CMS
WordPress
Discuz
其它CMS
Zend Studio
Sublime
Notepad
Dreamweaver
Windows
Linux
Nginx
Apache
IIS
CentOS
Ubuntu
Debian
网站优化
工具资源
PHP源码
ASP.NET源码
其它源码
图标素材
按钮素材
字体素材
DedeCMS模板
帝国CMS模板
PHPCMS模板
WordPress模板
Discuz!模板
单页模板
开发软件下载
服务器软件下载
广告投放
联系我们
版权申明
软件编程
网页前端
移动开发
数据库
服务器
脚本语言
PHP代码
JAVA代码
Python代码
Android代码
当前位置:
主页
>
网页前端
>
JavaScript代码
>
用javascript实现鼠标框选
时间:2020-11-24 17:14:54 | 栏目:
JavaScript代码
| 点击:次
起初是打算兼容 Netscape 和 FireFox 等浏览器的,但这些浏览器中不支持 style.pixelLeft,得使用 style.left 之类的(style.pixelLeft 为数字无单位,style.left 为文本有单位),实际使用中发现效果很不好,有延迟状,所以还是使用 style.pixelLeft,缺点是仅支持 IE 系列浏览器。
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>鼠标框选框</title> </head> <body> <img src="http://www.cftea.com/upload/720/code.jpg" ondrag="javascript:return false;"> <div id="box" style="position:absolute;display:none;width:0px;height:0px;border:1px solid #0000FF;background-color:#99CCFF;font-size:1px;filter:alpha(opacity=50);"></div> <script language="javascript"> <!-- var box = document.getElementById("box"); var boxWorking = false; var startPointX = 0; var startPointY = 0; //将要移动鼠标,准备鼠标框选框,设置相关数据 //仅鼠标左键或右键时有效 //在客户区有效,在滚动条区域无效(滚动条区域属document.body,但不属于document.body的客户区) function StartBox() { //鼠标键判断 if (event.button!=1 && event.button!=2) { return; } //鼠标位置判断 if (event.clientX>document.body.clientWidth || event.clientY>document.body.clientHeight) { return; } startPointX = document.body.scrollLeft + event.clientX; startPointY = document.body.scrollTop + event.clientY; box.style.pixelLeft = startPointX; box.style.pixelTop = startPointY; box.style.pixelWidth = 0; box.style.pixelHeight = 0; box.style.display = "block"; boxWorking = true; } //改变鼠标框选框大小 function ResizeBox() { //必须要先按下鼠标左键或右键 if (!boxWorking) { return; } var endPointX = document.body.scrollLeft + event.clientX; var endPointY = document.body.scrollTop + event.clientY; //鼠标左移还是右移 if (endPointX >= startPointX ) { box.style.pixelLeft = startPointX; box.style.pixelWidth = endPointX - startPointX; } else { box.style.pixelLeft = endPointX; box.style.pixelWidth = startPointX - endPointX; } //鼠标上移还是下移 if (endPointY >= startPointY ) { box.style.pixelTop = startPointY; box.style.pixelHeight = endPointY - startPointY; } else { box.style.pixelTop = endPointY; box.style.pixelHeight = startPointY - endPointY; } } //鼠标移动结束,隐藏鼠标框选框,设置相关数据 //仅鼠标左键或右键时有效 function EndBox() { //鼠标键判断 if (event.button!=1 && event.button!=2) { return; } box.style.display = "none"; boxWorking = false; } document.body.onmousedown= StartBox; document.body.onmousemove = ResizeBox; document.body.onmouseup = EndBox; //--> </script> </body> </html>
[Ctrl+A 全选 注:
引入外部Js需再刷新一下页面才能执行
]
下面这个只在区域内有效
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>鼠标框选框</title> </head> <body> <div id="content" style="width:381px;"> <img src="http://www.cftea.com/upload/721/code.jpg" ondrag="javascript:return false;" width="381" height="354"> <div id="box" style="position:absolute;display:none;width:0px;height:0px;border:1px solid #0000FF;background-color:#99CCFF;font-size:1px;filter:alpha(opacity=50);"></div> </div> <script language="javascript"> <!-- var content = document.getElementById("content"); var box = document.getElementById("box"); var boxWorking = false; var startPointX = 0; var startPointY = 0; //将要移动鼠标,准备鼠标框选框,设置相关数据 //仅鼠标左键或右键时有效 //在客户区有效,在滚动条区域无效(滚动条区域属document.body,但不属于document.body的客户区) function StartBox() { //鼠标键判断 if (event.button!=1 && event.button!=2) { return; } //鼠标位置判断 if (event.clientX>document.body.clientWidth || event.clientY>document.body.clientHeight) { return; } startPointX = document.body.scrollLeft + event.clientX; startPointY = document.body.scrollTop + event.clientY; box.style.pixelLeft = startPointX; box.style.pixelTop = startPointY; box.style.pixelWidth = 0; box.style.pixelHeight = 0; box.style.display = "block"; boxWorking = true; } //改变鼠标框选框大小 function ResizeBox() { //必须要先按下鼠标左键或右键 if (!boxWorking) { return; } var endPointX = document.body.scrollLeft + event.clientX; var endPointY = document.body.scrollTop + event.clientY; //鼠标左移还是右移 if (endPointX >= startPointX ) { endPointX = (endPointX<=(content.offsetLeft+content.offsetWidth))?endPointX:(content.offsetLeft + content.offsetWidth); box.style.pixelLeft = startPointX; box.style.pixelWidth = endPointX - startPointX; } else { endPointX = (endPointX>=content.offsetLeft)?endPointX:content.offsetLeft; box.style.pixelLeft = endPointX; box.style.pixelWidth = startPointX - endPointX; } //鼠标上移还是下移 if (endPointY >= startPointY ) { endPointY = (endPointY<=(content.offsetTop+content.offsetHeight))?endPointY:(content.offsetTop + content.offsetHeight); box.style.pixelTop = startPointY; box.style.pixelHeight = endPointY - startPointY; } else { endPointY = (endPointY>=content.offsetTop)?endPointY:content.offsetTop; box.style.pixelTop = endPointY; box.style.pixelHeight = startPointY - endPointY; } } //鼠标移动结束,隐藏鼠标框选框,设置相关数据 //仅鼠标左键或右键时有效 function EndBox() { //鼠标键判断 if (event.button!=1 && event.button!=2) { return; } box.style.display = "none"; boxWorking = false; } content.onmousedown= StartBox; document.body.onmousemove = ResizeBox; document.body.onmouseup = EndBox; //--> </script> </body> </html>
[Ctrl+A 全选 注:
引入外部Js需再刷新一下页面才能执行
]
您可能感兴趣的文章:
JavaScript常见事件处理程序实例总结
url传递的参数值中包含&时,url自动截断问题的解决方法
Javascript的匿名函数小结
javascript上下左右定时滚动插件
Javascript别踩白块儿(钢琴块儿)小游戏实现代码
相关文章
11-08
兼容浏览器的js事件绑定函数(详解)
11-27
Javascript实例教程(19) 使用HoTMetal(2)
11-23
Webpack中loader打包各种文件的方法实例
10-05
javascript判断图片是否加载完成的方法推荐
11-22
在javascript中执行任意html代码的方法示例解读
JQuery
VUE
AngularJS
MSSql
MySQL
MongoDB
Redis
Linux
Tomcat
Nginx
网站首页
广告投放
联系我们
版权申明
联系站长