javascript – 我无法从onchange事件调用2个函数

前端之家收集整理的这篇文章主要介绍了javascript – 我无法从onchange事件调用2个函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须通过将上面的文本字段作为输入来调用ajax函数以及调用附加函数获取另一个值.我希望获得返回,形成该功能.
这是我用来调用2个函数代码,但只有第一个函数ajax(this)才有效,我在调用ajax函数后得到返回值,而我没有得到第二个函数的任何返回值.我做错了什么
这是我的代码
<select style="width: 305px;" name="category_id1" id="category_id1" onchange="(function(){ajax('this');return locname('this');})(this)">

我的职责是

function ajax(control)
{
var loc=document.getElementById('category_id1').value;
//alert(loc);
var req;
if (window.XMLHttpRequest)
{// code for IE7+,Firefox,Chrome,Opera,Safari
   req=new XMLHttpRequest();
}
else
{// code for IE6,IE5
   req=new ActiveXObject("Microsoft.XMLHTTP");
}
req.open("POST","ajax.PHP?&loc="+loc+"",true);
req.send();

req.onreadystatechange=function(){
   if(req.readyState==4&&req.status==200){
       //$(".error").hide();
       result=req.responseText
       alert(result);
       var items = JSON.parse(result);
       //alert(items.length)
       var html = '<option value="">Select</option>';
       for ( var i = 0; i < items.length; i++ ) {
       html += "<option value='" + items[ i ] + "'>" + items[ i ] + "</option>"
     }
     document.getElementById("Ultra").innerHTML = html;
   }
   }
   }
 function locname(control)
 {
 var locName=control.value;
 //alert(locName)
 var json = <?PHP echo $response ?>;
 var orgName=document.getElementById("category_id").value;
//alert(json);
var html="<option>Select</option>";
var locations;
//alert(json.length);
for(var i=0; i<json.length; i++)
    {
        var item = json[i].name;
        //alert(item);
        if(orgName===item){
            //alert(item)
            locations=json[i].location;
            for(var j=0;j<locations.length;j++){
                var location=locations[j].name;
                //alert(locName)
       if(locName===location)
           {
               //alert(locName);
               var buildings=locations[j].building
               //alert(buildings)
               for(var k=0;k<buildings.length;k++)
                   {
                       var building=buildings[k];
                       //alert(building);
                html=html+"<option value='"+building+"'>"+building+"</option>";
                   }
           }

            }

}
}
document.getElementById("category_id2").innerHTML=html;
}

解决方法

试试:
onchange="ajax(this);locname(this);"
原文链接:https://www.f2er.com/js/159652.html

猜你在找的JavaScript相关文章