admin管理员组文章数量:1344922
Example:
<div class="test"><img src="test.jpg" style="display:none;" /></div>
How to change that with javascript, I know in css its:
.test img {display:block;}
but in javascript I only know this:
document.getElementById("test").style.display="block";
thats obviously the whole div tag , not the img.
Example:
<div class="test"><img src="test.jpg" style="display:none;" /></div>
How to change that with javascript, I know in css its:
.test img {display:block;}
but in javascript I only know this:
document.getElementById("test").style.display="block";
thats obviously the whole div tag , not the img.
Share Improve this question asked Nov 24, 2011 at 14:57 N_F_SN_F_S 1092 gold badges2 silver badges9 bronze badges 1- Your element has a class, not an ID ... – Alnitak Commented Nov 24, 2011 at 15:00
1 Answer
Reset to default 7If you're using an ID "test"
, you can do this.
document.getElementById("test")
.getElementsByTagName("img")[0].style.display="block";
This uses getElementsByTagName
which returns a collection of the images found. The [0]
grabs the image at index 0
(the first image), and then applies the style.
If you have a class "test"
, you can do this, but it won't work in IE7 and below:
var imgs = document.querySelectorAll(".test > img");
for( var i = 0; i < imgs.length; i++ ) {
imgs[i].style.display="block";
}
For the widest browser patibility, you can do this:
function getElementsByClassName( root, clss ) {
var elems = document.getElementsByTagName('*'),
result;
clss = " " + clss + " ";
for( var i = 0; i < elems.length; i++ ) {
if( (" " + elems[ i ].className + " ").indexOf( clss ) > -1 ) {
result.push( elems[i] );
}
}
return result;
}
var tests = getElementsByClassName( document, "test" );
for( var i = 0; i < tests.length; i++ ) {
var img = tests[i].getElementsByTagName('img')[0];
if( img ) {
img.style.display="block";
}
}
本文标签: javascriptchange the style of img inside a div tagStack Overflow
版权声明:本文标题:javascript - change the style of img inside a div tag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753467a2533079.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论