我希望选择框值Price显示输入。
这是组合框代码(TEKLİFVERİLECEKÜRÜN#1)
<div class="form-group">
<label style="color:black;">ÜRÜN FİYATI #1</label>
<input style="color:#8940D3; border: solid 1px black; background-color:silver" name="tekliftarihi" required="" type="text" class="form-control" readonly="" value="">
而且,我希望“ product_price”列显示此输入。
<Companies companylist={this.state.company} />
答案 0 :(得分:0)
您可以检测到选择框值的变化并将其输入。
您应该使用jQuery做类似的事情:
$("select[name=CompanyData]").change(function(){
$("input[name=tekliftarihi]").val($(this).val());
});