私のサイトでわかるように http://www2.outofscopes.com/test/index.html
私はYouTube APIに、onStateChangeにあるイベントを警告して通知させようとしています。このJavaScriptを使用して:
function onYouTubePlayerAPIReady() {
player = new YT.Player('player', {
videoId: '-cSFPIwMEq4',
events: {
'onStateChange': function (event) {
alert(event.data);
}
}
});
}
しかし、chrome と firefox (ほとんどの場合 firefox) の両方で、ページをリロードするときにのみ警告が表示されます。
なぜそれが起こるのでしょうか?