使用HTML按钮进行Doxygen更改单击时的文本

时间:2016-03-22 19:37:37

标签: javascript jquery html doxygen doxygen-wizard

我希望能够在Doxygen生成的文档中更改显示的文本。有点像,如果我按下这个按钮,下面的文字就会改变:

enter image description here

这就是我现在所拥有的(仅显示按钮):

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...

1 个答案:

答案 0 :(得分:0)

在页面中嵌入JS,在世界中嵌入你的牡蛎。您可以生成默认页眉和页脚

http://www.doxygen.nl/manual/doxygen_usage.html

然后将JS嵌入标题中。或直接嵌入......

/** @mainpage Stuff
@htmlonly
 <script type="text/javascript">
 alert();
 </script>
@endhtmlonly
*/