js TextArea的选中区域处理
(一)获取Textarea的选中区域起点或无选中时的输入光标位置 非IE浏览器,如,firefox,chrome,支持 selectionStart 获取选中区域的起点,而IE浏览器不支持该属性,需要间接通过TextRange来获得,利用TextRange对象的compareEndPoints方法来进行起点的比较可以实现。 代码如下: getStartPos : function( textarea ) { if ( typeof textarea.selectionStart != ‘undefined’ ) { // 非IE start = textarea.selectionSta
用户评论