如何在单个Sphinx页面中插入一个javascript?

问题描述 投票:0回答:1

我们有1000多个文件和一个主题的Sphinx文档。我需要在一个页面(.rst文件)中插入一个javascript代码,就像这样。

<script>
function myFunction() {
 alert("I am an alert box!");
}
</script>

<button onclick="myFunction()">Try it</button>

我怎么做呢? 我尝试了一个块和一个指令。

javascript python python-sphinx
1个回答
1
投票

在你的.rst文件中试试这个。

.. raw:: html

    <script>
    function myFunction() {
     alert("I am an alert box!");
    }
    </script>

    <button onclick="myFunction()">Try it</button>
© www.soinside.com 2019 - 2024. All rights reserved.