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.
有没有办法使用 javascript 将 HTML 表格完全换成另一个表格?我知道我可以更改现有表格中的内容,但我可以使用预制表格并将其替换为当前表格吗?如果是这样,我将如何去做?
如果您在该屏幕中已经有两个表,您可以简单地使用 CSS 使其中一个不可见,style="display:none"并使用 javascript 访问它们并在每次要交换时在它们之间切换显示属性。
style="display:none"
要切换的javascript代码将是
document.getElementById("elementID").style.display=''; (to show) document.getElementById("elementID#2").style.display='none'; (to hide)