任务是在使用Bootstrap单击时显示一个隐藏的div。有两种解决此问题的方法,下面讨论:
方法1:
- 设置显示:需要显示的div的none属性。
- 使用.show()方法显示div元素。
示例:此示例实现了上述方法。
How to hide div element by default
and show it on click using
JavaScript and Bootstrap ?
GeeksForGeeks
This is Div box.
输出:
- 在单击按钮之前:
- 单击按钮后:
方法二:
- 设置显示:需要显示的div的none属性。
- 使用.toggle()方法显示Div。但是,可以使用此方法再次隐藏div。
示例:此示例实现了上述方法。
How to hide div element by default and
show it on click using JavaScript and
Bootstrap ?
GeeksForGeeks
This is Div box.
输出:
- 在单击按钮之前:
- 单击按钮后: