我正在尝试检查所选元素是否为视频。
MY 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
标记?非常感谢!