简单版:
document.getElementById("a").innerHTML+="456"
复杂版:
给追加的文本所在层设id,格式不变:
document.getElementById("a").innerHTML+=document.getElementById("b")
可以定义一个全局变量,在选取该元素将此元素赋给此变量,在点button时,将此变量append到你所要添加的地方。比如:
var
tempDOM
function
clickDOM(){
tempDOM
=
$(this)
}
function
clickButton(){
$("#你所要添加到的div或者其他的id").append(tempDOM)
}