我试图弄清楚如何根据使用javascript在另一个输入字段中输入的内容自动填充输入值。这是我的代码:
<script>
add = document.getElementById('address').value;
city = document.getElementById('city').value;
state = document.getElementById('state').value;
zip = document.getElementById('zip').value;
compAdd = add+" "+city+" "+state+" "+zip;
function showAdd(){
document.getElementById('shipadd1').value=compAdd;
document.getElementById('add1').innerHTML=compAdd;
}
</script>
<form action="" onchange="showAdd();">
Home Address: <input id="address" name="address" type="text" /><br/>
Apt or Suite Number: <input id="suite" name="suite" type="text" /><br/>
City/Town: <input id="city" name="city" type="text" /><br/>
State:<select id="state" name="state" value="">...</select><br/>
Zip:<input id="zip" name="zip" type="text" value=""/><br/>
<p> Select Shipping Address Below: </p>
<input type="checkbox" id="shipping-address-1" name="address1" value=""><span id="shiadd1">(Print auto-populated shipping address here...)</span>
<input type="checkbox" id="shipping-address-2" name="address2" value="">ABC Corp 123 Main Street, My City, State Zip
</form>
答案 0 :(得分:6)
我根据您的要求制作了js fiddle。
<强> HTML 强>
Home Address:
<input id="address" name="address" type="text" />
<br/>Apt or Suite Number:
<input id="suite" name="suite" type="text" />
<br/>City/Town:
<input id="city" name="city" type="text" />
<br/>State:
<select id="state" name="state" value="">
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
</select>
<br/>Zip:
<input id="zip" name="zip" type="text" value="" />
<br/>
<p>Select Shipping Address Below:</p>
<input type="checkbox" id="shipping-address-1" name="address1" value="">
<label for="shipping-address-1" id="shiadd1">(Print auto-populated shipping address here...)</label>
<input type="checkbox" id="shipping-address-2" name="address2" value="">
<label for="shipping-address-2">ABC Corp 123 Main Street, My City, State Zip</label>
<强>的JavaScript 强>
$("#address,#suite,#city,#state,#zip").change(function () {
var addressArray = [$("#address").val(), $("#suite").val(), $("#city").val(), $("#state").val(), $("#zip").val()];
$("#shiadd1").text(addressArray.join(' '));
});
答案 1 :(得分:4)
我做了一个例子:
<强> HTML 强>
<input type="text" class="first">
<input type="text" class="second">
<强>的javascript 强>
$(".first").on('keyup',function(){
$(".second").val($(this).val());
});
出于您的目的:
$("#address").on('change', function(){
$("#shipping-address-1").val($(this).val());
});
答案 2 :(得分:0)
onchange
标记应在<input>
标记中使用,而不是<form>
。
答案 3 :(得分:0)
使用两个输入文本框创建简单的html文件。第一个输入文本框将采用用户输入的日期格式,第二个输入文本框将以该格式显示当前日期。 第一步完成后,实现日期选择库以选择日期并根据在第一输入文本b中给出的用户输入对其进行格式化。