js实现文字选中分享功能
程序员文章站
2023-02-23 12:12:56
总结:文字选中ie和其他浏览器不一样
在ie中文字选中后鼠标抬起,图片显现触发有点快所以用定时器。
总结:文字选中ie和其他浏览器不一样
在ie中文字选中后鼠标抬起,图片显现触发有点快所以用定时器。
<!doctype html> <html> <head> <meta charset=utf-8 /> <title></title> <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> <style type="text/css"> *{padding: 0;margin: 0;} #p1{width: 300px;} #div1{display: none;position: absolute;} img{width:26px;height:26px;} </style> </head> <body> <p id="p1"> 文字的选中功能是不太常用的功能,多出现在文本编辑器中,或是文本域之类的光标处理上。所以呢,使用的一些属性也并不是常见的。在ie浏览器下使用的是createtextrange而firefox/chrome等现代浏览器下使用的是setselectionrange。 </p> <div id='div1'><img src='http://cdn.attach.qdfuns.com/notes/pics/201701/23/221744ud9ggjjjgg85e90m.gif.editor.gif'></div> <script type="text/javascript"> function selecttext(){ if(document.selection){ //ie return document.selection.createrange().text }else{ //ff chrom return window.getselection().tostring() } } var op=document.getelementbyid('p1') var odiv=document.getelementbyid('div1') op.onmouseup=function(ev){ var ev=ev||event var left=ev.clientx var top=ev.clienty if(selecttext().length>10){ settimeout(function(){ odiv.style.display='block'; odiv.style.left=left+'px' odiv.style.top=top+'px' },100) }else{ odiv.style.display='none'; } } //点击op阻止冒泡到document上 op.onclick=function(ev){ var ev=ev||window.event ev.cancelbubble=true } document.onclick=function(){ odiv.style.display='none'; } </script> </body> </html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: 乐昌公主的生平怎么样?她都经历了什么?
下一篇: 前高管:苹果创新乏力 产品失去吸引力