简体   繁体   中英

Getting attribute from class using javascript?

如何从以下标记获取属性“ src”:

<div class="entry"><img width="300" height="200" src="http://domain/myimg.jpg" alt="text" /></div>

I would recommend using an ID for the 'entry' element (or directly on the image element) instead of a class.

If that's not possible use this:

var x = document.querySelector('.entry img');
alert('src: ' + x.getAttribute('src'));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM