使用与PHP下拉列表中的选定值对应的值填充文本字段

时间:2012-05-05 16:55:50

标签: php dreamweaver

我的mysql数据库中有两个字段,分别是ItemDescription和StockNo。 ItemDescription填充下拉列表。从下拉列表中选择一个值后,我想使用与所选ItemDescription相对应的StockNo填充文本字段。我没有要显示的代码(除了我插入的表单控件)。我听说这可以通过AJAX实现,但我没有找到教程的运气。提前谢谢!

另外,如果重要的话,我正在使用Adobe Dreamweaver CS5

2 个答案:

答案 0 :(得分:0)

将号码放在您选择的选项value属性中:

<select id="dropdown">
    <option value="">Select an option …</option>
    <option value="1">One</option>
    <option value="2">Two</option>
    <option value="3">Three</option>
</select>

添加输入以显示值:

<input type="text" id="value" />​

使用 JavaScript

使其工作
window.onload = function() {
    document.getElementById("dropdown").onchange = function() {
        document.getElementById("value").value = this.options[this.selectedIndex].value;
    }
}

示例(小提琴): http://jsfiddle.net/jhogervorst/nYADy/

答案 1 :(得分:0)

一个简单的基本解决方案可能看起来像这样......

<html>
<body>
Item Description <select id="ItemDescription" onchange="populate()">
<option value="Item1">Item1</option>`</select>
<br/>
Stock No <input type="text" id="StockNo" value=""/>
</body>
</html>

JS Part .....

var xmlHttp;

function createXmlHttpRequest() {

     if(window.ActiveXObject)   {
         xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
     }
     else if(window.XMLHttpRequest){
         xmlHttp = new XMLHttpRequest();      
     }
}

function populate() {

    createXmlHttpRequest(); 
var param = document.getElementById('ItemDescription').value;
    xmlHttp.open("GET", "http://localhost:9444/populate?itemdesc="+param, true);
    xmlHttp.onreadystatechange=handleStateChange;
    xmlHttp.send(null);    
 }


 function handleStateChange() {  

   if(xmlHttp.readyState==4) {   
       if(xmlHttp.status==200){         
         var stockNo = xmlHttp.responseText                       
         document.getElementById('StockNo').value = stockNo;                                              
    }
    else
        alert("Error Loading Page" + xmlHttp.status + xmlHttp.statusText);  
    }
 } 

}