Ajax使用 博客分类: Ajax&WebService Ajax
程序员文章站
2024-02-14 19:32:58
...
function createXmlHttpRequest() { try { if (window.ActiveXObject) { xmlHttp = new ActiveXObject("msxml2.XMLHTTP"); return xmlHttp; } else { return new XmlHttpRequest(); } } catch (exception) { alert(exception); return null; } } function chSingerType(ob) { xmlHttp = createXmlHttpRequest(); var url = "singer.do?op=doSelectSingerByType&id="+ob.value; xmlHttp.open("GET", url, true); xmlHttp.onreadystatechange = chSingerTypeResult; xmlHttp.send(null); } function chSingerTypeResult() { if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { var text = xmlHttp.responseText; var objs = text.split("@"); for(var i=1;i<objs.length;i+=2) { if(objs[i]!=""){ var t=document.createElement("option"); t.setAttribute("value",objs[i]); t.innerText=objs[i+1]; document.getElementById("sele2").appendChild(t); } } } }
推荐阅读
-
Ajax使用 博客分类: Ajax&WebService Ajax
-
php通用图像处理类库intervention/image使用 博客分类: PHP interventionimagephp
-
Ajax使用 博客分类: Ajax&WebService Ajax
-
ThinkPHP中使用ajax接收json数据的方法
-
使用 cglib 代理的实现 博客分类: cglib cglib
-
Google Map使用入门 博客分类: iOS iPhoneIOSGoogle Map
-
在BootStrap的modal中使用Select2 博客分类: Web开发 UI
-
在BootStrap的modal中使用Select2 博客分类: Web开发 UI
-
go 编程语言初次使用 博客分类: C语言&jni go编程linux
-
使用eclipse进行c++的开发 博客分类: C++ eclipsec++