我是javascript中的新手,我尝试使用java脚本从网站获取视频网址 没有在页面源中查找它 页面源是这样的
<html>
<body>
<script type="text/javascript">
jwplayer("myJwVideo").setup({
playlist: [{
image: "http://www.blabla.com/back.jpg",
sources: [{
file: "http:www.videourl.mp4"
}]
}],
});
</script>
</body>
</html>
有没有办法在firefox或谷歌Chrome控制台中使用javascript获取 http:www.videourl.mp4 网址
答案 0 :(得分:3)
jwplayer( “myJwVideo”)。getPlaylist()。
http://support.jwplayer.com/customer/en/portal/articles/1413089-javascript-api-reference#all
上的文档