1
2
3
4
5
6
7
8
9
10
//初始化td对象及tr对象
var $td = $("<td/>"),$tr=$("<tr/>")
//分别为td对象赋值
$tr.append($td.clone().text( $("#a1").val() ))
.append($td.clone().text( $("#a2").val() +"-"+ $("#a2").val()))
.append($td.clone().text( $("#a4").val() ))
//table的id假设为tb,为table追加tr对象
$("#tb").append($tr)
table是只有cell没有cells,cell也没有value,range.text是对的,下面是可以用的代码Dim myTab As Table
Set myTab = Documents(1).Tables(1)
myTab.Cell(1, 1).Range.Text = 1123123
加UILabel...UILabel设置为多行显示
cell.accessoryView= CellLabel = [[UILabel alloc] initWithFrame:CGRectMake( , , , )]
[CellLabel setBackgroundColor:[UIColor clearColor]]
CellLabel.numberOfLines=
[CellLabel setFont:[UIFont boldSystemFontOfSize: ]]
[CellLabel release]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)