我需要在网页上的div内检索src中的html链接,div看起来像这样:
<iframe width="100%" class="idemo2" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="some/private/link">
</iframe>
我已经设法使用这一点代码在变量中获取此类的内容:
var l = document.getElementById("demo-left").getElementsByClassName("idemo2")
但是当我尝试检索src时,要么通过将.src或.getAttribute(&#34; src&#34;)添加到上面放置的代码的后面,要么直接添加到变量,它会返回值&#39; undefined&#39;。
我的问题是如何在我的变量中找到src而不是整个Class?
jQuery也是一个使用的选项,但我还没有研究如何使用jQuery(还)。
答案 0 :(得分:0)
的jQuery
var imgSrc = $(".idemo2").attr('src');