码迷,mamicode.com
首页 > 其他好文 > 详细

获取contenteditable区域光标所在位置信息

时间:2017-03-07 00:11:26      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:webkit   oca   监听   ctc   script   sel   edit   class   name   

在我们使用contenteditable编辑时,有时需要光标位置的信息。

 

<div contenteditable="true" style="min-height: 200px; width: 100%;-webkit-user-select: auto"></div>

 

<script>

   if(s.anchorNode.parentElement.localName == ‘div‘){
      actClass = s.anchorNode.className;
   }else{
      actClass = s.anchorNode.parentElement.className;
   }

</script>

 

这段js代码可以一直监听光标位置。

获取contenteditable区域光标所在位置信息

标签:webkit   oca   监听   ctc   script   sel   edit   class   name   

原文地址:http://www.cnblogs.com/fengxuezhiyi/p/6512464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!