test.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <a id="aaa">打开iframe</a>
  11. <iframe src="" style="width: 100%; height: 500px;" id="iframe"></iframe>
  12. <script>
  13. document.querySelector('#aaa').addEventListener('click', function() {
  14. document.querySelector('iframe').setAttribute('src', 'http://192.168.0.107:3000/data/0.0/hot/index.html?m=sprite_27&time=1540882701178')
  15. setTimeout(() => {
  16. var $videos = document.querySelector('#iframe').contentWindow.document.querySelector('video')
  17. $videos.play();
  18. }, 1000)
  19. })
  20. function videoloaddingSuccess() {
  21. }
  22. document.addEventListener("WeixinJSBridgeReady", function func() {
  23. alert('te..st');
  24. setTimeout(() => {
  25. // var $videos = document.querySelector('#iframe').contentWindow.document.querySelector('video')
  26. // $videos.play();
  27. }, 1000)
  28. }, false);
  29. </script>
  30. </body>
  31. </html>