原型隐藏具有特定链接的 div (

我有以下 HTML:

<div> <a href="http://google.com"> Google </a></div>

我正在使用原型库。 我需要隐藏带有链接 http://google.com 的 div。 谢谢。

I have the following HTML:

<div> <a href="http://google.com"> Google </a></div>

I am using prototype library. I need to hide the div that has the link http://google.com with it. Thank you.

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

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

发布评论

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

评论(3

無處可尋 2024-07-29 10:02:01

在原型中:

$('div a[href="http://google.com"]').each(function (e) { Element.hide(e.parentNode); })

In Prototype:

$('div a[href="http://google.com"]').each(function (e) { Element.hide(e.parentNode); })
懒的傷心 2024-07-29 10:02:01

您可以使用 CSS 来做到这一点。

<div class="hideMe"> <a href="http://google.com"> Google </a></div>

然后在 CSS 中执行以下操作:

#hideMe {
  display:none;
}

You could use a CSS to do this.

<div class="hideMe"> <a href="http://google.com"> Google </a></div>

and then in a CSS do :

#hideMe {
  display:none;
}
过潦 2024-07-29 10:02:01

您可以使用 jQuery 吗?

如果是这样,请使用以下代码:

$(document).ready(function() {
    $('a[href=http://www.google.com]').parent('div').hide();
});

如果父级不一定位于 DOM 中的下一级,请改用 .parents

$(document).ready(function() {
    $('a[href=http://www.google.com]').parents('div').hide();
});

但是,这可能会影响 div 上的 div。甚至在树中的更高级别。

Is jQuery available to you?

If so, use the following code:

$(document).ready(function() {
    $('a[href=http://www.google.com]').parent('div').hide();
});

If the parent is not necessarily on the immediate next level in the DOM, use .parents instead:

$(document).ready(function() {
    $('a[href=http://www.google.com]').parents('div').hide();
});

However that might affect divs on an even higher level in the tree.

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