• <small id='wB1uG'></small><noframes id='wB1uG'>

      <tfoot id='wB1uG'></tfoot>

        <i id='wB1uG'><tr id='wB1uG'><dt id='wB1uG'><q id='wB1uG'><span id='wB1uG'><b id='wB1uG'><form id='wB1uG'><ins id='wB1uG'></ins><ul id='wB1uG'></ul><sub id='wB1uG'></sub></form><legend id='wB1uG'></legend><bdo id='wB1uG'><pre id='wB1uG'><center id='wB1uG'></center></pre></bdo></b><th id='wB1uG'></th></span></q></dt></tr></i><div id='wB1uG'><tfoot id='wB1uG'></tfoot><dl id='wB1uG'><fieldset id='wB1uG'></fieldset></dl></div>
        • <bdo id='wB1uG'></bdo><ul id='wB1uG'></ul>
      1. <legend id='wB1uG'><style id='wB1uG'><dir id='wB1uG'><q id='wB1uG'></q></dir></style></legend>

        内容脚本中的 addEventListener 不起作用

        时间:2023-09-06
          <legend id='LSIK3'><style id='LSIK3'><dir id='LSIK3'><q id='LSIK3'></q></dir></style></legend>

                <bdo id='LSIK3'></bdo><ul id='LSIK3'></ul>
                <tfoot id='LSIK3'></tfoot>
                <i id='LSIK3'><tr id='LSIK3'><dt id='LSIK3'><q id='LSIK3'><span id='LSIK3'><b id='LSIK3'><form id='LSIK3'><ins id='LSIK3'></ins><ul id='LSIK3'></ul><sub id='LSIK3'></sub></form><legend id='LSIK3'></legend><bdo id='LSIK3'><pre id='LSIK3'><center id='LSIK3'></center></pre></bdo></b><th id='LSIK3'></th></span></q></dt></tr></i><div id='LSIK3'><tfoot id='LSIK3'></tfoot><dl id='LSIK3'><fieldset id='LSIK3'></fieldset></dl></div>
                  <tbody id='LSIK3'></tbody>

                  <small id='LSIK3'></small><noframes id='LSIK3'>

                • 本文介绍了内容脚本中的 addEventListener 不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个带有 popup.html 和注入内容脚本的 chrome 扩展.使用注入的内容脚本,我试图访问 youtube 的 javascript API 函数,除了一个:addEventListener.

                  I've got a chrome extension with a popup.html and an injected content script. With the injected content script I'm trying to access youtube's javascript API functions and it all works fine except for one: addEventListener.

                  Youtube 的 javascript API 的事件监听器监听视频状态的变化.因此,如果到达视频的结尾,状态将变为 0.

                  The event listener of Youtube's javascript API listens for the state of the video to change. So if the end of the video is reached the state changes to 0.

                  var currentVideo = document.getElementById('movie_player');
                  currentVideo.addEventListener("onStateChange", "onytplayerStateChange");
                  
                  function onytplayerStateChange() {
                     console.log("The state of the player has changed");
                  }
                  

                  这段代码在正常环境中运行良好,但在内容脚本中无法运行.为什么我无法在内容脚本中捕捉到不断变化的事件?有什么想法吗?

                  This piece of code works just fine in a normal environment but it fails to work in content script. Why can't I catch changing events in my content script? Any ideas?

                  推荐答案

                  内容脚本在当前页面范围内运行.事件处理程序必须通过另一个 <script> 标记注入,如以下答案所述:使用 Youtube 事件构建 Chrome 扩展:

                  Content scripts do not run in the scope of the current page. The event handler has to be injected via another <script> tag, as described in this answer: Building a Chrome Extension with Youtube Events:

                  var actualCode = 'function onytplayerStateChange() {'
                                 + '    console.log("The state of the player has changed");'
                                 + '}';
                  
                  var script = document.createElement('script');
                  script.textContent = actualCode;
                  (document.head||document.documentElement).appendChild(script);
                  script.parentNode.removeChild(script);
                  

                  PS.DOM 可用于内容脚本,因此绑定事件处理程序确实有效.

                  这篇关于内容脚本中的 addEventListener 不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:将 HTML5 画布序列转换为视频文件 下一篇:如何获取我的整个 YouTube 观看历史记录?

                  相关文章

                  <legend id='HN3Yu'><style id='HN3Yu'><dir id='HN3Yu'><q id='HN3Yu'></q></dir></style></legend>
                • <tfoot id='HN3Yu'></tfoot>
                  • <bdo id='HN3Yu'></bdo><ul id='HN3Yu'></ul>

                  <small id='HN3Yu'></small><noframes id='HN3Yu'>

                    <i id='HN3Yu'><tr id='HN3Yu'><dt id='HN3Yu'><q id='HN3Yu'><span id='HN3Yu'><b id='HN3Yu'><form id='HN3Yu'><ins id='HN3Yu'></ins><ul id='HN3Yu'></ul><sub id='HN3Yu'></sub></form><legend id='HN3Yu'></legend><bdo id='HN3Yu'><pre id='HN3Yu'><center id='HN3Yu'></center></pre></bdo></b><th id='HN3Yu'></th></span></q></dt></tr></i><div id='HN3Yu'><tfoot id='HN3Yu'></tfoot><dl id='HN3Yu'><fieldset id='HN3Yu'></fieldset></dl></div>