我无法确定为什么youtube视频突然停止工作,视频网址工作正常,我无法找到HTML代码的任何问题,不确定有什么问题,任何人都可以查看website让我知道真正的问题是什么,谢谢。
我在Console" TypeError:this.match(...)为null"
String.prototype.getVideoID = function () { var movieURL; if (this.substr(0, 16) == "youtu.be/") { movieURL = this.replace("youtu.be/";, ""); } else if (this.indexOf("http") > -1) { movieURL = this.match(/[\\?&]v=([^&#]*)/)[1]; } else { movieURL = this } return movieURL; }; var isDevice = 'ontouchstart' in window; function onYouTubePlayerAPIReady() { if (jQuery.mbYTPlayer.YTAPIReady) return; jQuery(document).trigger("YTAPIReady"); jQuery.mbYTPlayer.YTAPIReady = true; } –