如何根据从第一个下拉列表自动更改的第二个下拉列表更改第二个文本框值


How to change the 2nd textbox value based on the 2nd dropdown that is automatically changed from 1st dropdown?

我有两个下拉列表,当我更改第一个时,第二个的值也会相应更改。还有两个文本框,这两个下拉框各有一个。

当第一个下拉列表更改时,我运行AJAX并在第一个文本框中显示mySQL中的值。正如我所说,第二个下拉列表的值也发生了变化。

我的问题是,如何根据从第一个下拉列表自动更改的第二个下拉列表更改第二个文本框值?

当我更改第一个下拉时,这就是我所说的

    function getVariety(seed_name) {        

    var strURL="findVariety.php?seed_name="+seed_name;
    var req = getXMLHTTP();
    if (req) {
        req.onreadystatechange = function() {
            if (req.readyState == 4) {
                // only if "OK"
                if (req.status == 200) {                        
                    document.getElementById('seed_variety_show').innerHTML=req.responseText;            
                } else {
                    alert("There was a problem while using XMLHTTP:'n" + req.statusText);
                }
            }               
        }           
        req.open("GET", strURL, true);
        req.send(null);
    }       
}

findVariety.php

----mysql config variables------
.
.
<select  class="form-control c-square c-theme input-lg" name="seed_variety">
<option value="">Επίλεξε</option>
<? while($row=mysql_fetch_array($result)) { ?>
<option value="<?=$row['sv_variety_name']?>"><?=$row['sv_variety_name']?></option>
<? } ?>
</select>

使用value属性而不是innerHTMLinnerHTML用于将html内容推送到元素,而要设置input/selectform元素的值,请使用value

document.getElementById('seed_variety_show').value=req.responseText;

要更改第二个文本框的值,请在第二个select上使用onchange侦听器。

由于选择是动态添加的,因此需要使用event delegation

试试这个:

$('body').on('change', '[name="seed_variety"]', function() {
  alert(this.value);
});
相关文章: