将2个相同的函数加入1中

时间:2013-10-10 18:45:54

标签: javascript jquery

function showRole(str,x)
        {
            if (str=="")
              {
              document.getElementById("txtHintrole"+x+"").innerHTML="";
              return;
              } 
            if (window.XMLHttpRequest)
              {// code for IE7+, Firefox, Chrome, Opera, Safari
              xmlhttp=new XMLHttpRequest();
              }
            else
              {// code for IE6, IE5
              xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
              }
            xmlhttp.onreadystatechange=function()
              {
              if (xmlhttp.readyState==4 && xmlhttp.status==200)
                {
                document.getElementById("txtHintrole"+x+"").innerHTML=xmlhttp.responseText;
                }
              }

            xmlhttp.open("GET","http://localhost/tes/index.php/form/role/"+str,true);
            xmlhttp.send();
        }
function showUser(str,x)
        {
            if (str=="")
              {
              document.getElementById("txtHint"+x+"").innerHTML="";
              return;
              } 
            if (window.XMLHttpRequest)
              {// code for IE7+, Firefox, Chrome, Opera, Safari
              xmlhttp=new XMLHttpRequest();
              }
            else
              {// code for IE6, IE5
              xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
              }
            xmlhttp.onreadystatechange=function()
              {
              if (xmlhttp.readyState==4 && xmlhttp.status==200)
                {
                document.getElementById("txtHint"+x+"").innerHTML=xmlhttp.responseText;
                }
              }

            xmlhttp.open("GET","http://localhost/tes/index.php/form/hint/"+str,true);
            xmlhttp.send();
        }

我可以将这个2功能加入到1中 因为我需要他们两个来显示数据 我不知道如何用这个

设置2个功能
  

newcell.childNodes [0] .setAttribute( “平变化”, “showUser(THIS.VALUE,” + XX + “);”);

1 个答案:

答案 0 :(得分:2)

我猜你想在onchange上调用两个函数。试试这个:

newcell.childNodes[0].setAttribute("onchange",function(){
    showUser(this.value,"+xx+");
    secondFunction();
});

或者因为你标记了这个jQuery,所以用jQuery方式:

$(newcell.childNodes[0]).change(function(){
    showUser(this.value,"+xx+");
    secondFunction();
});