var table = document.createElement('table'); var thead = document.createElement('thead'); var tbody = document.createElement('tbody');增加table边框
时间: 2024-03-02 08:51:29 浏览: 134
要给table添加边框,可以在创建table时设置其border属性,例如:
```
var table = document.createElement('table');
table.border = "1";
```
这样就给table添加了1像素的实线边框。如果想要更细的边框可以设置小数值,例如0.5。
阅读全文