12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- </head>
- <body>
- <a id="aaa">打开iframe</a>
- <iframe src="" style="width: 100%; height: 500px;" id="iframe"></iframe>
- <script>
- document.querySelector('#aaa').addEventListener('click', function() {
- document.querySelector('iframe').setAttribute('src', 'http://192.168.0.107:3000/data/0.0/hot/index.html?m=sprite_27&time=1540882701178')
- setTimeout(() => {
- var $videos = document.querySelector('#iframe').contentWindow.document.querySelector('video')
- $videos.play();
- }, 1000)
-
- })
-
- function videoloaddingSuccess() {
- }
- document.addEventListener("WeixinJSBridgeReady", function func() {
- alert('te..st');
- setTimeout(() => {
-
- // var $videos = document.querySelector('#iframe').contentWindow.document.querySelector('video')
- // $videos.play();
- }, 1000)
- }, false);
- </script>
- </body>
- </html>
|