我有多个按钮,每个按钮都显示一个主题名称。示例:英语、数学、社交、法语等。
单击任何这些按钮时,应显示其内容。每个按钮(主题)的内容都是唯一的。我只有一个 div 容器。when a particular button is selected, the corresponding content is shown, and when next button is showed, the current content should be replaced by new button content, and all these should happen on Click only.
我对 java 脚本和查询非常陌生,请尝试帮助我。
这是我的 HTML
<div id="graybox">
<button type="button">English</button>
<button type="button">Math</button>
<button type="button">French</button>
<button type="button">Social</button>
</div>
<div id="whitebox">
on click of the subject above, respective content will be shown here,
</div>
PS:科目将来自数据库,可以是5个科目或8个或任意数量。所以主题名称和编号不固定。