我可以执行以下操作将两个变量连接成一个吗?或者有更好的方法吗?
$('.row-add').live("click", function () {
var newContent = $("<span>Example data</span>"+"");
var newContent2 = $("<span>New Project</span>");
var content = newContent+newContent2;
$(this).closest("td").append(content);
});
答案 0 :(得分:4)
您可以使用.add
content = newContent.add( newContent2 );
答案 1 :(得分:3)
如果在jQuery对象之间使用+
,您将获得字符串表示[fiddle]的串联。
如果你想追加多个元素,就这样做吧。
$('.row-add').live("click", function () {
var newContent = $("<span>Example data</span>"+"");
var newContent2 = $("<span>New Project</span>");
$(this).closest("td").append(newContent).append(newContent2);
});
答案 2 :(得分:0)
public int count (Tree myTree){
Node root = myTree.getRoot();
return root != null ?
1 + count(constructTree(root.getLeft()) +
count(contructTree(root.getRight()))
: 0;
}