无忧技术网 - RSS订阅 
无忧技术网

Javascript 获取页面上选中的文字


作者:[佚名] - 发布:2010-8-18 13:31:06 - 来源:无忧技术网

1、 获取选中的普通页面上的文字,可以用下面的方法:

  1. function getSelectedText() {
  2. if (window.getSelection) {
  3. // This technique is the most likely to be standardized.
  4. // getSelection() returns a Selection object, which we do not document.
  5. return window.getSelection().toString();
  6. }
  7. else if (document.getSelection) {
  8. // This is an older, simpler technique that returns a string
  9. return document.getSelection();
  10. }
  11. else if (document.selection) {
  12. // This is the IE-specific technique.
  13. // We do not document the IE selection property or TextRange objects.
  14. return document.selection.createRange().text;
  15. }
  16. }

 2、在FireFox下获取input或者textarea中选中的文字,可以用下面的方法: 

  1. function getTextFieldSelection(e) {   
  2.     if (e.selectionStart != undefined && e.selectionEnd != undefined) {   
  3.         var start = e.selectionStart;   
  4.         var end = e.selectionEnd;   
  5.         return e.value.substring(start, end);   
  6.     }   
  7.     else 
  8.     return "";  // Not supported on this browser   
  9. }
责任编辑:liqwei
打印本页】【关闭本页】【返回列表
·上一篇:SWFObject 2.X 最新版语法调用示例
·下一篇:免费网页模板资源站分享
 文章评分
  • current rating
-5 -4 -3 -2 -1 0 +1 +2 +3 +4 +5
 相关文章
 相关评论
 站点最新文章 更多>> 
·[经典影音]弱点
·[经典影音]萨利机长
·[经典影音]天空之眼
·[管理知识]康奈尔笔记法,提高100%学习效率
·[管理知识]刘强东:我管75000人靠这4张表格
·[管理知识]跟壳牌学HSE管理
·[运营策划]编辑工作内容整理
·[至理名言]奋斗与决定
·[瀚海拾遗]盲人打灯笼之各家论道
·[搞笑段子]中国男足
 站点浏览最多 更多>> 
·[协议规范]http断点续传原理:http头 Range、…
·[JS/CSS/HTML]HTML 空格的表示符号 nbsp / en…
·[NoSQL]Mongo数据库简介
·[协议规范]什么是SPF记录?如何设置、检测SP…
·[协议规范]图解 HTTPS 通信过程
·[PHP]精选国外免费PHP空间推荐
·[程序综合]常用IP地址查询接口
·[程序综合]什么是 DNS Prefetch ?
·[程序综合]获取客户端IP地址的三个HTTP请求…
·[Linux]/usr 目录的由来