使用JQuery获取音频src属性
我想访问第二个“section”元素内的 mp3 文件的 src 属性。我如何使用 JQuery 做到这一点?
<html>
<body>
<div id="slides">
<section>
<h3 class="audio"><audio src="file.mp3" /></h3>
</section>
<section>
<h3 class="audio"><audio src="otherfile.mp3" /></h3>
</section>
<section>
<h3 class="audio"><audio src="audio.mp3" /></h3>
</section>
</div>
</body>
</html>
I want to access the src atribute of the mp3 file inside the second "section" element. How do I do that with JQuery?
<html>
<body>
<div id="slides">
<section>
<h3 class="audio"><audio src="file.mp3" /></h3>
</section>
<section>
<h3 class="audio"><audio src="otherfile.mp3" /></h3>
</section>
<section>
<h3 class="audio"><audio src="audio.mp3" /></h3>
</section>
</div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery API
我认为这应该对你有帮助。 :)
代码将是
jQuery('audio:eq(1)').attr('src');
jQuery API
I think this should be of help to you. :)
The code would be
jQuery('audio:eq(1)').attr('src');
最简单的方法是将 id 分配给源元素:
然后从 Jquery
The easiest way is to assign an id to the source element:
Then from Jquery
好吧,通常您会拥有要访问的特定元素的
id
。但是,您仍然可以执行您想要的操作:
请参阅文档。
Well, normally you'd have
id
s for specific elements you want to access.However, you can still do what you want:
See the docs.