这是我尝试的:

function(nowrap)  {
 var cell = $(`'<td>'`);
 //cell.wrap = wrap (not working)
}

最佳答案

如果要从表中获取特定的td并设置其属性,请尝试一下。

首先为其td指定一个唯一的类名或ID。

使用ID写

$('#td1").attr("nowrap","nowrap");


使用该类,编写

$('.td1").attr("nowrap","nowrap");

09-27 07:21