这就是我的尝试:
function(nowrap) {
var cell = $(`'<td>'`);
//cell.wrap = wrap (not working)
}
答案 0 :(得分:1)
尝试使用nowrap attribute,
<td nowrap="nowrap">
使用css这应该与div元素一起使用,不确定td
<style type="text/css"> .nowrap { white-space: nowrap; } </style> <div class="nowrap">Content here</div>
答案 1 :(得分:1)
如果您想从表中获取特定td
并设置其属性,请尝试使用。
首先为其td
提供一个唯一的类名或ID。
使用ID,写
$('#td1").attr("nowrap","nowrap");
使用该类,编写
$('.td1").attr("nowrap","nowrap");
答案 2 :(得分:1)
var $cell = $('td');
$cell.css("white-space", "nowrap");
答案 3 :(得分:0)
使用attr
功能。还要检查here。它说NOWRAP
已被弃用。而是使用CSS
<script>
$(function() {
var cell = $('<td></td>').attr({'NOWRAP': 'NOWRAP'}).appendTo('.tr').html('asdfsd');
});
</script>
<table>
<tr class='tr'><tr>
</table>
答案 4 :(得分:0)
在纯 Javascript 中:
document.getElementById("myDIV").style.whiteSpace = "nowrap";
or
td.style.whiteSpace = "nowrap";