使用 jQuery 和
如何使用 jQuery 与 元素进行交互,特别是仅隐藏
元素的“查找”部分?
我不认为使用纯 HTML 可以隐藏搜索部分。
How can one interact with an <audio>
element using jQuery, specifically to hide only the "seeking" part of an <audio>
element?
I don't think the seeking part can be hidden by using plain HTML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的
标记没有“controls”属性(或者,我认为如果该属性值为
false
),则不会显示任何控件。 HTML5 Boilerplate CSS 隐藏没有控件的音频元素:您根本不需要 JavaScript/jQuery。
If your
<audio>
tag does not have the "controls" attribute (or, I think if the attribute value isfalse
), then no controls are shown. The HTML5 Boilerplate CSS hides audio elements without controls:You shouldn't need JavaScript/jQuery at all.