带有 HTML 按钮的 Doxygen 在点击时更改文本
Doxygen with HTML buttons changing text on click
我希望能够更改 Doxygen 生成的文档中显示的文本。比如,如果我按下这个按钮,下面的文字就会改变:
这是我现在拥有的(仅显示按钮):
Language
--------
@htmlonly
<button type="button" >C++</button>
<button type="button" >Python</button>
<button type="button" >Java</button>
@endhtmlonly
Goal
----
We have multiple ways to acquire digital images...
在页面中嵌入 JS,一切尽在掌握。您可以生成默认的页眉和页脚
http://www.doxygen.nl/manual/doxygen_usage.html
然后在页眉中嵌入JS。或者直接嵌入...
/** @mainpage Stuff
@htmlonly
<script type="text/javascript">
alert();
</script>
@endhtmlonly
*/
我希望能够更改 Doxygen 生成的文档中显示的文本。比如,如果我按下这个按钮,下面的文字就会改变:
这是我现在拥有的(仅显示按钮):
Language
--------
@htmlonly
<button type="button" >C++</button>
<button type="button" >Python</button>
<button type="button" >Java</button>
@endhtmlonly
Goal
----
We have multiple ways to acquire digital images...
在页面中嵌入 JS,一切尽在掌握。您可以生成默认的页眉和页脚
http://www.doxygen.nl/manual/doxygen_usage.html
然后在页眉中嵌入JS。或者直接嵌入...
/** @mainpage Stuff
@htmlonly
<script type="text/javascript">
alert();
</script>
@endhtmlonly
*/