一般选择一个文本区域

发布于 2024-11-04 19:28:12 字数 275 浏览 0 评论 0原文

我正在寻找一种通过 jQuery 选择器从页面上的某些元素中选择文本区域的方法,但似乎无法弄清楚。

这是我尝试过的一个示例:

JsFiddle

我想使用 :input[ type='blah']'textarea' 似乎不是正确的语法。或者可以创建我自己的选择器,但我不确定如何首先选择文本区域。

I am looking for a way to select a textarea from some element on the page via a jQuery selector but can't seem to figure it out.

Here is an example what I have tried:

JsFiddle

I would like to use the :input[type='blah'] but 'textarea' doesn't seem to be the correct syntax. Or possible create my own selector but Im not sure how to select just the textarea in the first place.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

那伤。 2024-11-11 19:28:12

$('textarea') 有什么问题吗? (示例)

编辑 不幸的是,而 $(':input ') 会混淆地包含 textarea,没有任何变体可以通过它选择 textarea。我现在明白你为什么感到困惑了。如上,直接查找textarea元素即可。

A <textarea> is not an <input type="textarea">.

What's wrong with $('textarea')? (example)

Edit It's unfortunate that, while $(':input') will confusingly include textareas, there is no variant to select just textareas through it. I see now why you were confused. As above, just look for textarea elements directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文