从 .each 操作中排除一个输入
给定这样定义的输入:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它会调用任何与 #connectionsCount 不匹配的匹配元素,因此它适用于除此之外的所有元素。
it would invoke on any matched elements that don't match #connectionsCount, so it applies to everything but that.
我发现其他选择器是我的 #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')