我在下面有html代码,我想通过vb web浏览器获取href的url。我使用Element.GetAttribute(" href")。ToString()但它没有得到任何东西而不是新的空行。你能帮我解决一下吗?
<div class="_4bl9 _5yjp">
<a href="/WingChunLegends/videos/10153914712308760/" target="_blank" id="u_2a_1f">
<span class="_24-s">Ip Man 3 Trailer USA</span>
</a>
<div class="_2rm4">
<div class="fsl fwn fcb">
<span>The Legend Will Rise Again</span>
<span role="presentation" aria-hidden="true"> · </span>
Video
</div>
</div>
</div>
&#13;
答案 0 :(得分:0)
您可以使用以下内容:
$(function(){
$('#u_2a_1f').click(function(){
alert($(this).attr('href'));
});
});
或者如果您不想使用点击事件,您可以这样做:
$(document).ready({
$("#u_2a_1f").attr("href")
});
希望它可以帮到你!