28,406
社区成员
发帖
与我相关
我的任务
分享
<Script Language=JavaScript>
function shoucang(id){
var tao_xmlhttp;
if(window.ActiveXObject)
try{
tao_xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
tao_xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){ }
}
if (!tao_xmlhttp && window.XMLHttpRequest){
tao_xmlhttp = new XMLHttpRequest();}
if(!tao_xmlhttp) {
alert("你的IE版本太低,请您更新IE6以上版本");
return;
}
tao_xmlhttp.onreadystatechange=function(e){
if(tao_xmlhttp.readyState==4 && tao_xmlhttp.status==200)
document.getElementById('sc'+id).innerHTML=tao_xmlhttp.responseText;
}
tao_xmlhttp.open("Get","aaa.Asp?wid="+id+"&g=a",true);
tao_xmlhttp.send(null);
}
</Script>
<div id="content">
<div id="stream" class="message">
<h3>列表</h3>
<ol class='wa'>
<li>第一条内容</li>
<li>第二条内容</li>
<li>第三条内容</li>
<li>第四条内容</li>
</ol>
</div>
</div>