我们在html页面中添加了折线图,时间滑块和数据表。
当用户点击“全部清除”时按钮我们要删除折线图,时间滑块和数据表。
使用
删除折线图和时间滑块d3.selectAll("svg").remove();
我们如何删除/清除数据表?
答案 0 :(得分:1)
使用jQuery,你可以做到
$("#clearButton").click(function() {
$("#datatable").css("display", "none");
});
其中" clearButton"是你的按钮的id和"数据表"是数据表HTML元素的id。
答案 1 :(得分:0)
function RefreshTable() {
datatable.fnClearTable();
};
RefreshTable() ;
dc.renderAll() ;