“具有属性且父级未选择”的 Jquery 选择器

发布于 2024-11-06 16:44:43 字数 198 浏览 0 评论 0原文

是否有一个 jquery 选择器显示类似“has attribute=x 并且父级尚未选择”之类的内容?在下面的代码中,节点 1-1 两次添加到下部 div,但我只想将其添加为节点 1 的一部分。

http://jsfiddle.net/XLU4W/

Is there a jquery selector that says something like, "has attribute=x and parent hasn't been selected yet"? In the code below, node 1-1 gets added twice to the lower div, but I only want it to be added as part of node 1.

http://jsfiddle.net/XLU4W/

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

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

发布评论

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

评论(5

枯寂 2024-11-13 16:44:43

你可以尝试这样的事情:

var result = $('div[mod_date="1"]');

result.filter(function (i) {
  if(result.has(this.parentNode))
     return false;
  else
    return true;
});

You can try out something like:

var result = $('div[mod_date="1"]');

result.filter(function (i) {
  if(result.has(this.parentNode))
     return false;
  else
    return true;
});
最后的乘客 2024-11-13 16:44:43

尝试用这种方式...

var html = $('div[mod_date="1"]').parent().html()

$('.selection').append(html);

参见此处

try in this way...

var html = $('div[mod_date="1"]').parent().html()

$('.selection').append(html);

See here

童话 2024-11-13 16:44:43

不是直接您描述的选择器,而是仅匹配第一级,您可以这样做:

$('.main > div[mod_date="1"]').clone().appendTo($('.selection'))

Not directly a selector you described but matching only the first level, you could do:

$('.main > div[mod_date="1"]').clone().appendTo($('.selection'))
倒数 2024-11-13 16:44:43

如果我理解正确的话,这应该可以完成工作:
http://jsfiddle.net/ZrjkD/

If I understand correctly this should do the job:
http://jsfiddle.net/ZrjkD/

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