我想在HTML中獲取img元素的src。它看起來是這樣的:從div獲取img元素的src?
<div class="image_wrapper" id="this_one">
<img src="Images/something.jpg" />
</div>
這是非常簡單的,當我把一個ID在img中,並得到這個src很容易。
但問題是,當我從div元素獲取img的src時。
var someimage = document.getElementById('this_one').firstChild.getAttribute("src");
alert(someimage);
我需要在字符串中獲取此URL。但不值得。
你_someimage_得到什麼? – Coder