PJBLOG中用到的ajaxjs.几个简单的函数
function$(id) { returndocument.getElementById(id); } functionecho(obj,html) { $(obj).innerHTML=html; } functionfopen(obj) { $(obj).style.display=""; } functionfclose(obj) { $(obj).style.display="none"; } functioncreatexmlhttp() { ...