在 IE 中使用 jCaret 插件获取插入符位置
我在 IE 中使用 jCaret 插件时遇到问题。
我想获取文本区域内的插入符号位置。
我的代码如下所示:
$('.myTextArea').click(function(){
var myCaretPos = $(this).caret().end;
});
IE 中的问题是,如果文本区域只有一行,我只能得到正确的结果,但如果有多于一行,则结果是错误的。看来 IE 中换行符要多一个字符。那么如何去除IE中的换行符呢?
I have problem with jCaret plugin in IE.
I want to get the caret position inside a textarea.
My code looks like this:
$('.myTextArea').click(function(){
var myCaretPos = $(this).caret().end;
});
The problem in IE is that I only get correct result if the textarea is only one line, but if there are more than one line the result is wrong. It seems that line breaks takes one extra char in IE. So how can I remove line breaks in IE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到过并解决了这个问题。下面是一个在 jQuery 之外执行此操作的函数:
以及如何使用它的示例:
我还制作了一个 jQuery 插件,其中包含此功能以及与文本区域选择相关的其他功能。它尚未发布,但已经稳定并经过测试。来源在这里:http://code .google.com/p/rangy/source/browse/trunk/src/js/modules/textinputs_jquery.js。例子:
I've encountered and solved this problem. Here's a function that will do it outside jQuery:
And an example of how to use it:
I've also made a jQuery plug-in that includes this functionality, along with other functionality relating to textarea selections. It's not yet released but is stable and tested. Source is here: http://code.google.com/p/rangy/source/browse/trunk/src/js/modules/textinputs_jquery.js. Example: