将事件发送到OBS Studio Brwoser源

时间:2018-08-18 14:52:19

标签: javascript streaming

您知道吗,如何将Javasccript事件(如Toast)发送到OBS浏览器源?

总要以某种方式清除缓存。这是我的尝试:

<html>
<head>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-toast-plugin/1.3.2/jquery.toast.js"></script>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-toast-plugin/1.3.2/jquery.toast.css">

  <script>
    function test() {
      $.toast({
        text : "Hallo",
        hideAfter : 5000
      });
     }
  </script>
</head>
<body>
  <button onclick="test()">Click me</button>
</body>
</html> 

因此,当我单击“单击我”按钮时,它总是显示给我吐司。但是,当我将此HTML包含到OBS浏览器源中时,仅当我始终清除Browsersource中的缓存时,它才起作用。

我知道这不是这里的热门话题,但是我希望有人可以帮助我:)

感谢和问候!

0 个答案:

没有答案