Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在单击按钮后隐藏JSTree并清除与该文件相关的所有内容,然后在单击另一个文件后再次显示。JSTreeJSTree
JSTree
我使用 .empty() 来隐藏,但是一旦隐藏,它就不会在不刷新页面的情况下再次出现。那么隐藏的反义词是什么?
不要使用“.empty()”来隐藏。“.empty”用于从指定的选择器中删除标记。如果您想隐藏树,请使用“.hide()”。使用“.show()”将使其重新出现。
或者,使用“addClass('hide')”来应用一个将显示设置为不显示任何树容器的类。然后,如果您希望再次显示树容器,请使用“addClass("show")”,这是一个显示设置设置为 display:block 的类。