0

シンプルな Hello world 関数とエラーを示すボタン。iFrame をコメントアウトします - 魅力的に機能します。コメントを削除してください - 致命的なエラーです。私は困惑しています。

ソース:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
  </head>
    <body>
  <button onclick="helloWorld()">Click me</button>

 <iframe id="ytplayer" type="text/html" width="640" height="390"
  src="http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com"/> 
</body>
</html>
<script>
    function helloWorld() {
        console.log("Hello world");
    }
</script>
4

1 に答える 1