我正在打印一张桌子,需要给它一些边框,例如字体大小,我该怎么做?谢谢

//调用我的json函数

 success: function(json) {
                    var html="";
                    html+="<table>";
                    html+="<tr>";
                    html+="<td>"+"Categoria";
                    html+="</td>";
                    html+="<td>"+"Numero";
                    html+="</td>";
                    html+="</tr>";
                    var meta=json.meta;
                    var nome=meta.categoria;
                    var risultati=json.risultati;
                    console.log("json",json);
                    console.log("meta", json.meta);
                    console.log("nome", json.meta.nome);
                    var categoria;
                    var n_poi;
// printing the array with the values
                    for(i=0; i<risultati.length; i++){
                        categoria=risultati[i].categoria;
                        n_poi=risultati[i].n_poi;
                        html+="<tr>";
                        html+="<td>"+categoria;
                        html+="</td>";
                        html+="<td>"+n_poi;
                        html+="</tr>";
                    }
                    html+="</table>";
                    $("#table").append(html);
                },`

最佳答案

我建议给表一个ID或类,然后从那里继续进行基本样式设置:

更改

html+="<table>";




html+="<table class='clName'>";


然后,您可以继续使用类,再次为特定的单元格指定特定的样式:

变更(例如)

html+="<td>"+"Categoria";




html+="<td class='specificClsName'>"+"Categoria";

10-01 16:43