我尝试使用此代码加载 youtube 视频脚本文件
var rqst=$.ajax( {
dataType : 'jsonp',
type : 'GET',
url : 'https://www.youtube.com/api/timedtext?v=bwOhfoewMYs&lang=en&callback=alert',
success : function(response) {
alert("SUCCESS");
},
error : function() {
alert("failed."); }
}
);
并出现此错误
Uncaught SyntaxError: Unexpected token <
并且未分配变量rqst
,因此我无法访问文件的 RespondText 屏幕截图: