最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Get Attribute of hidden (display:none) html element - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

5 Answers 5

Reset to default 6

Your 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

发布评论

评论列表(0)

  1. 暂无评论