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.
我想知道将新的 javascript 文件添加到 RT 的正确方法,以及我应该在哪里添加<script src="newJS.js"></script>标签。
<script src="newJS.js"></script>
您可以遵循自定义样式文档中提供的 CSS 规则,但将 'css' 替换为 'js' 并使用@JSFiles配置选项而不是 @CSSFiles 选项。完成此操作后,RT 将为您提取 JavaScript,因此您无需<script>自己添加标签。您还可以将<script>标签直接放在主题编辑器的样式框中。
<script>
如果你想把 JavaScript 放在页面的特定部分,你可以使用 RT 的回调系统,在扩展文档中有描述。但是对于较小的自定义,您应该能够从您的主 JavaScript 文件中操作 DOM。