<script type="text/javascript">
//建立AJAX
function initxmlhttp()
{
var xmlhttp
try {
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp=false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}
return xmlhttp;
}
//顯示
//ptype 欄目id
//liclass 節點識別ID
//id 條ID
//vc 節點數
function drawSelect(ptype,liclass,id,vc){
element = document.getElementById("s_" + vc);//取得下節點位置
var xmlhttp=initxmlhttp();
var url="type.php?act=selectx&ptype=" + ptype + "&liclass=" + liclass + "&id=" + id + "&vc=" + vc;
//xmlhttp.open("GET",url,true);//非同步傳輸
xmlhttp.open("GET",url,false);//同步傳輸 用於展開各級
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
element.innerHTML=xmlhttp.responseText;
}
}
xmlhttp.send(null); //開始運行
}