I have the following HTML:プロトタイプは、それに特定のリンク(<a href)
<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を持つdiv要素を隠しありがとう
I have the following HTML:プロトタイプは、それに特定のリンク(<a href)
<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を持つdiv要素を隠しありがとう
:
$$('div a[href="http://google.com"]').each(function (e) { Element.hide(e.parentNode); })
あなたがこれを行うにはCSSを使用することができ
<div class="hideMe"> <a href="http://google.com"> Google </a></div>
をして、CSSで実行します。。
#hideMe {
display:none;
}
はあなたに利用できる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
Sに影響を与えるかもしれないが。プロトタイプで