我需要创建一个表单,我输入2个日期和第3个输入我需要创建一个下拉列表,其中包含使用输入日期从数据库中找到的值范围bt我需要所有这些在单个表单中而不使用提交
答案 0 :(得分:0)
你可以使用这样的东西
`
<input type="date" name="date" id="date1" placeholder="From" />
<input type="date" name="date" id="date2" placeholder="To"/>
<br/>
<input type="text" name="selectdate1" id="resdate1" placeholder="date1"/>
<input type="text" name="selectdate2" id="resdate2" placeholder="date2"/>
`
$(function() {
$("#date1").on("change",function(){
var from = $(this).val();
var to = $(this).val();
//alert(from);
$('#resdate1').val(from);
});
$("#date2").on("change",function(){
var to = $(this).val();
// alert(to);
$('#resdate2').val(to);
});
});