jQuery,选择正文但排除文本区域和输入:文本,怎么样?

发布于 2024-12-22 23:31:54 字数 534 浏览 0 评论 0原文

我尝试了这个 $('body').children().not('textarea input:text') 但不工作。有人有主意吗?

我想要这个是因为当我使用 jQuery.translator 时,我不想要 < code>textarea 和 input:text 被转换,所以我喜欢排除它们。如果您知道更好的方法来做到这一点,请告诉我。谢谢。

编辑

我认为我问了一个错误的问题,请在此处查看新问题 不要通过 jQuery.translator 翻译 textarea,如何?

我我现在要关闭这个。谢谢

I tried this $('body').children().not('textarea input:text')
But not working. Anyone has an idea?

I want this because when I use jQuery.translator, I do not want the textarea and input:text get transalted, so I like to exclude them. If you know a better way to do this, let me know. Thanks.

EDIT

I think I asked a wrong question, please check here for new question
Do NOT translate textarea by jQuery.translator, how?

I am going to close this one now. thanks

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

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

发布评论

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

评论(2

2024-12-29 23:31:54
$('body *:not(textarea, input:text)')

children() 只为您提供直接子级,并且如果没有某种结构介入,您不太可能在 body 下直接拥有输入元素。另外,'textarea input:text' 表示文本区域内的文本输入,这种情况(希望)永远不会发生。

$('body *:not(textarea, input:text)')

children() only gives you the immediate children, and it's unlikely you have input elements directly under body without some kind of structure intervening. Also, 'textarea input:text' means text inputs that are within a textarea, which will (hopefully) never happen.

甜`诱少女 2024-12-29 23:31:54

试试这个:

$('*:not(textarea,:text)', document.body);

Try this:

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