我有一个弹出窗口。单击弹出窗口中的下一个按钮时,当前的内容div
必须替换为另一个div
内容。我想在单击同一个下一个按钮时重复此操作divs
。如何做到这一点?
问问题
666 次
3 回答
0
你可以试试这个
function fun()
{
document.getElementById("div1").innerHTML= document.getElementById("div2").innerHTML;
}
调用此函数 onclick 按钮的事件。
于 2013-04-22T09:13:56.663 回答
0
You can use jQuery .html() method to get content from div and then add this content to destination div Checkout sample on jsFiddle http://jsfiddle.net/btPb6/
function replaceContent(source, destination){
$('#'+destination).html($('#'+source).html());
}
于 2013-04-22T09:25:46.277 回答
0
尝试这样的事情:
var a = $('#div1').html();
var b = $('#div2').html(a);
当然是使用 Jquery。
于 2013-04-22T09:12:09.137 回答