我正在用 ajax 加载一个 div。我的代码是。
代码:
<script type="text/javascript">
function showvalue(str)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
var myString = xmlhttp.responseText;
document.getElementById("div2").innerHTML=myString;
}
}
xmlhttp.open("GET","test.php?u="+str,true);
xmlhttp.send();
}
当用户单击按钮时。它显示了一个包含一些内容的 div。当用户再次单击按钮时,查询再次从数据库中选择一些数据。div 中的先前内容丢失,新内容被插入到 div 中。但我想将以前的数据和新数据都加载到该 div 中。有没有办法保存以前的 div 状态?请帮我