1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <!DOCTYPE html>
| <html>
|
| <body>
| <video src="http://www.test.cn"></video>
| <script>
| function parse_play_url() {
| var videos = document.getElementsByTagName('video');
| if (videos.length <= 0) {
| hxhapi.onVideoUrl('', '没有获取到video标签');
| return;
| }
| hxhapi.onVideoUrl(videos.item(0).getAttribute('src'), '');
| }
| parse_play_url();
| </script>
| </body>
|
|
|
|
| </html>
|
|