检索聚焦/模糊上的文本
我有多个文本区域,当您完成编辑它们时,我希望在字段不再具有焦点时检索新文本。
我一直在尝试的解决方案是
$('textarea').live('focusout', function() {
console.log(this.text);
});
or
$('textarea').live('blur', function() {
console.log(this.text);
});
两者都返回未定义,因为它不知道“this”指的是什么。
还有其他事件可以使这成为可能吗?
I have mulitple textarea's, when you're finished editing them i'm looking to retrieve the new text when the field doesn't have focus anymore.
The solution i've been trying is
$('textarea').live('focusout', function() {
console.log(this.text);
});
or
$('textarea').live('blur', function() {
console.log(this.text);
});
Both return as undefined, due to it not knowing what 'this' is referring to.
Is there another event that can make this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
value
属性 (this.value
) 获取内容。即使在 JQuery 中,.text()
方法也不会返回文本区域的正确内容。如果你想使用 JQuery 方法:
Use the
value
property (this.value
) to get the contents. Even in JQuery, the.text()
method doesn't return the right contents of a textarea.If you want to use a JQuery method: