Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将事件分派到两个级别,如下所示
客户端 <--- API 包装器 <--- 平台代码
但是当我在 API 层执行 dispatchEvent(event) 时,它会引发错误,因为该级别的对象不存在。我需要调度相同的事件我应该做什么。
你应该把你的脚本标签放在 html 代码的末尾,如下所示:
<body> . . html tags . . <script> . . . your codes </script> </body>
或者
把你的脚本放进去$(document).ready(function(){...your codes...})
$(document).ready(function(){...your codes...})