gpt4 book ai didi

jquery - 如何检查变量是否是视频标签?

转载 作者:太空宇宙 更新时间:2023-11-04 04:04:24 25 4
gpt4 key购买 nike

我正在尝试检查所选元素是否为视频。

我的 html

<div class='component'>
<video><source.../></video>
</div>

我的 js

$('.component').on('click', function(){
var newElement = $(this).children().first(); //I need to keep the children().first() for
other purpose

if(newElement.find('video').length){ //this will never be true..
alert('is video')
}
})

如何检测 newElement 是否为 video 标签?非常感谢!

最佳答案

if (newElement.is('video')) {

http://api.jquery.com/is/

关于jquery - 如何检查变量是否是视频标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21590525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com