play()
未安装 Quicktime 时,Windows 上的 Safari 5.1.7 不支持pause()
对video
元素进行等操作。
因此,我想检测它是否受支持。
jQuery('video').each(function(){
this.pause();
});
这将返回:TypeError: 'undefined' is not a function (evaluating 'this.pause()')
jQuery('video').each(function(){
if( <<I need a way to check if pause is in this>> ){
this.pause();
}
});
我正在寻找一种方法来正确地做到这一点。任何帮助将非常感激!