从 .each 操作中排除一个输入

发布于 2024-09-16 00:06:52 字数 220 浏览 2 评论 0原文

给定这样定义的输入:

<input type="text" id="connectionsCount" />

此代码不应该排除否则会执行的操作。

$(".cartOption .value .input").not('#connectionsCount').each(function () {

Given an input defined thusly:

<input type="text" id="connectionsCount" />

shouldn't this code exclude actions that would otherwise execute.

$(".cartOption .value .input").not('#connectionsCount').each(function () {

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

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

发布评论

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

评论(2

江心雾 2024-09-23 00:06:52

它会调用任何与 #connectionsCount 不匹配的匹配元素,因此它适用于除此之外的所有元素。

it would invoke on any matched elements that don't match #connectionsCount, so it applies to everything but that.

把回忆走一遍 2024-09-23 00:06:52

我发现其他选择器是我的 #connectionsCount 元素的父级,因此我需要检查子级:

.children().not('input:#connectionsCount')

I found that the other selectors were parents of my #connectionsCount element so i needed to check the children:

.children().not('input:#connectionsCount')

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