我如何使用 Javascript 切换隐藏或显示 div 和类?
嗨,我只是希望能够通过类分别切换隐藏/显示 div。
我的 div 是 ul.post_controls
Hi i just want to be able to toggle to hide/show a div respectively with a class.
my div is ul.post_controls
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
编辑 抱歉,我没有意识到您没有提到 jQuery - 它听起来很像一个 jQuery 问题。同时,如果您正在考虑使用像 jQuery 这样的 JavaScript 框架,请查看这里的生活有多简单:http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery。
您几乎已经说过了:
这是参考:http://api.jquery.com/toggle/。
这就是我设置它的方式,以便在单击按钮时 uls 切换:
假设您有一个 ID 为“myButton”的元素。
Edit Sorry didn't realise you didn't mention jQuery - it just sounded so much like a jQuery question. At the same time, if you are considering using a JavaScript framework like jQuery, check out how much simpler life can be here: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery.
You almost said it:
Here's the reference: http://api.jquery.com/toggle/.
This is how I'd set it up so the uls toggle when a button is clicked:
That's assuming you have an element with an ID of "myButton".
非 jQuery: http://www .randomsnippets.com/2008/02/12/how-to-hide-and-show-your-div/
Non jQuery: http://www.randomsnippets.com/2008/02/12/how-to-hide-and-show-your-div/
http://rijamedia.com/博客/2011/01/simple-jquery-hideshow-elements-with-toggle-and-slidetoggle/
http://rijamedia.com/blog/2011/01/simple-jquery-hideshow-elements-with-toggle-and-slidetoggle/