检索聚焦/模糊上的文本

发布于 2024-12-09 12:46:21 字数 298 浏览 0 评论 0原文

我有多个文本区域,当您完成编辑它们时,我希望在字段不再具有焦点时检索新文本。

我一直在尝试的解决方案是

$('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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝颜夕 2024-12-16 12:46:21

使用 value 属性 (this.value) 获取内容。即使在 JQuery 中,.text() 方法也不会返回文本区域的正确内容。

如果你想使用 JQuery 方法:

$('textarea').live('focusout', function() {
    console.log($(this).val());
}

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:

$('textarea').live('focusout', function() {
    console.log($(this).val());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文