入力フィールドから値をコピーして別のonkeyup
に送信しようとしていますが、値を抽出して送信しません。 入力フィールド値を他の入力フィールドに送信
function populateSecondTextBox() {
document.getElementById('cepAddressRouteTransporter').value = document.getElementById('postal_code').value;
}
<form action="transporter/route" method="post" role="form">
<table id="address">
<tr>
<td class="label">Zip code</td>
<td class="wideField">
<input class="field" id="postal_code" name="postal_code" onkeyup="populateSecondTextBox();">
</td>
</tr>
</table>
<div class="input-field col s6">
<i class="material-icons prefix">directions</i>
<input placeholder="Ex: 18214-780" id="cepAddressRouteTransporter" name="cepAddressRouteTransporter" type="text" class="validate">
<label for="cepAddressRouteTransporter">CEP:</label>
</div>
</form>
"値だけを抽出して送信しません"とはどういう意味ですか? – sskoko
@sskoko入力 '$('#postal_code ')。val(); 'に入力された値を抽出していますが、送信しませんinput 'cepAddressRouteTransporter' – smachs
あなたの投稿を編集してコードスニペットを挿入しましたが、あなたのコードは正常に動作しているようです。 –