admin管理员组文章数量:1345891
How do I get the href attribute of a hidden element e.g.
<div style="display: none;">
<div id="inline1" style="width:640px; height: 363px; overflow:hidden;">
<a class="a.player" style="display: block; width: 640px; height: 360px; " href=""></a>
</div>
</div>
var videolink = $('a.player').attr('href');
alert (videolink);
This will give an undefined value, any help would be great.
How do I get the href attribute of a hidden element e.g.
<div style="display: none;">
<div id="inline1" style="width:640px; height: 363px; overflow:hidden;">
<a class="a.player" style="display: block; width: 640px; height: 360px; " href="http://myvideo.mp4"></a>
</div>
</div>
var videolink = $('a.player').attr('href');
alert (videolink);
This will give an undefined value, any help would be great.
Share Improve this question asked Jan 27, 2012 at 14:20 PsylantPsylant 931 silver badge10 bronze badges 1- 2 As Daniel has stated your class name shouldn't contain . – Neo Commented Jan 27, 2012 at 14:24
5 Answers
Reset to default 6Your class name is flawed.
You should just name it player
and then select it with a.player
.
Try
$('.a.player').attr('href');
or change classname to:
player
try
<a class="player">
istead of
<a class="a.player">
you dont have to specify the class name as class=a.player
it should be class="player"
DEMO
<div style="display: none;">
<div id="inline1" style="width:640px; height: 363px; overflow:hidden;">
<a id="myHref" class="aplayer" style="display: block; width: 640px; height: 360px; " href="http://myvideo.mp4"></a>
</div>
</div>
var videolink = $('.aplayer').attr('href');
//var videolink = $('#myHref').attr('href');
alert (videolink);
Fiddle link Here
本文标签: javascriptGet Attribute of hidden (displaynone) html elementStack Overflow
版权声明:本文标题:javascript - Get Attribute of hidden (display:none) html element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818669a2544389.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论