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

时间:2014-02-05 23:04:31

标签: jquery html css

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

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标记?非常感谢!

1 个答案:

答案 0 :(得分:2)

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

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