2011-09-16 53 views
0

我在PHP中工作我在這裏創建了一個頁面當我選擇第一個組合框項目時,我有2個組合框,第二個組合框根據第一個組合框使用JavaScript填充問題我面臨的問題是我嘗試將第二個組合框的數據保存在數據庫中我發現空值。 transition_party_id是動態這裏我的代碼JavaScript數據文章

function getXMLHTTP() { //function to return the xml http object 
    var xmlhttp=false; 
    try{ 
     xmlhttp=new XMLHttpRequest(); 
    } 
    catch(e) {  
     try{    
      xmlhttp= new ActiveXObject("Microsoft.XMLHTTP"); 
     } 
     catch(e){ 
      try{ 
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
      } 
      catch(e1){ 
       xmlhttp=false; 
      } 
     } 
    } 

    return xmlhttp; 
      } 

    function getparty(category) {  
    var strURL="../admin/get_partyname.php?category="+category; 
    var req = getXMLHTTP(); 

    if (req) { 

     req.onreadystatechange = function() { 
      if (req.readyState == 4) { 
       // only if "OK" 
       if (req.status == 200) {       
                document.getElementById('partydiv').innerHTML=req.responseText;      

       } else { 
        alert("There was a problem while using XMLHTTP:\n" + req.statusText); 
       } 
      }    
     }   
     req.open("GET", strURL, true); 
     req.send(null); 
    } 

} 
+1

[呼吸](http://www.penny-arcade.com/comic/2002/10/11)。 – outis

回答

0
req.open("GET", strURL, true); 
req.send(null); 

您可以通過「GET」方法派「空」後填入數據組合框。

或者您在等待數據獲取?