选择开始-结束与文本区域
我遇到了这个烦人的问题,我似乎无法获取文本区域中所选文本的开始和结束索引,我得到的只是未定义,如下所示:
$('#myarea').selectionStart; // return undefined
我做错了什么吗?
I'm having this annoying problem, I can't seem to get the starting and ending index of the selected text in a textarea, all I get is undefined like this:
$('#myarea').selectionStart; // return undefined
Did I do something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
为什么? jQuery 选择器不返回实际的 DOM 元素,而是返回包装的 jQuery 集合。 jQuery 使实际的 DOM 元素可以作为数组进行访问,因此如果您想使用第一个匹配的元素(在本例中,是唯一的一个,因为它是通过 ID 实现的),您可以执行上述操作。
Try:
Why? A jQuery selector does not return the actual DOM elements but the wrapped jQuery collection. jQuery makes the actual DOM elements accessible as an array, so if you wanted to use the 1st matched element (and in this case, the only one, since it's by ID), you would do the above.
从 jQuery 1.6 版本开始,您可以使用 .prop() 方法:
Get:
Set:
Since jQuery version 1.6, you can use .prop() method:
Get:
Set: