日期:2014-05-17 浏览次数:20543 次
function changeSelectByPart()
{
var xmlDoc=null;
if (window.ActiveXObject) { //IE浏览器
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async=false;
xmlDoc.load("App_Data/ChildFunction.xml");
} //其他浏览器FIREFOX,CHROME,SAFARI
else if(document.implementation && document.implementation.createDocument)
{
var xmlhttp = new window.XMLHttpRequest();
xmlhttp.open("GET", "ChildFunction.xml", false);
xmlhttp.send(null);
xmlDoc = xmlhttp.responseXML;
}
else
{
xmlDoc = null;
}
xmlDoc.load("App_Data/ChildFunction.xml");+$("#"+contentID+"DDL_Part").find("option:selected").text()
var nodes = xmlDoc.selectNodes("//ChildFunction/"+$("#"+contentID+"DDL_Part").find("option:selected").text());
alert(nodes.text);
}