Jquery根据值选择文本区域

发布于 2024-10-21 01:41:56 字数 298 浏览 1 评论 0原文

我试图根据文本区域中的值来选择文本区域,我尝试这样做:

alert( $('textarea[value="Type"]').length );

但我得到零。

这是我的文本区域:

<textarea id="Title" name="title" rows="5" cols="29" class="textentry_verdana12pxItalic">Type</textarea>

我可以这样做吗?

I'm trying to select textareas based on the value in them, I tried doing this:

alert( $('textarea[value="Type"]').length );

But I get zero.

Here's my textarea:

<textarea id="Title" name="title" rows="5" cols="29" class="textentry_verdana12pxItalic">Type</textarea>

Can I do this?

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

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

发布评论

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

评论(4

清风挽心 2024-10-28 01:41:56

value 不是该文本区域的属性。该文本区域的 HTML 属性为 idnamerowscolsclass 。试试这个:

$('textarea').filter(function ()
{
    return $(this).val() === 'Type';
}).length

.filter() API 文档

value is not an attribute of that textarea. That textarea's HTML attributes are id, name, rows, cols, and class. Try this instead:

$('textarea').filter(function ()
{
    return $(this).val() === 'Type';
}).length

.filter() API docs

残疾 2024-10-28 01:41:56

使用“包含”伪选择器:

jQuery('textarea:contains(Type)')

Use the "contains" pseudo selector:

jQuery('textarea:contains(Type)')
怎会甘心 2024-10-28 01:41:56

尝试
Alert( $('textarea:contains("Type")').length );

Try
alert( $('textarea:contains("Type")').length );

笑着哭最痛 2024-10-28 01:41:56

试试这个(contains-selector):

alert($("textarea:contains('Type')").length);

try this (contains-selector):

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