一般选择一个文本区域
我正在寻找一种通过 jQuery 选择器从页面上的某些元素中选择文本区域的方法,但似乎无法弄清楚。
这是我尝试过的一个示例:
我想使用 :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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$('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 includetextarea
s, there is no variant to select justtextarea
s through it. I see now why you were confused. As above, just look fortextarea
elements directly.