我有2个HTML(表单元素)输入,两种类型的文本。当我写第一篇文章时,我希望我写的同一文本出现在我写的第二个文本输入中。这可能吗?怎么样?这在网上很难找到。
答案 0 :(得分:4)
document.getElementById('first').onkeyup = function(e) {
document.getElementById('second').value = e.target.value;
}

<input type="text" id="first" placeholder="Type in this">
<input type="text" id="second">
&#13;
答案 1 :(得分:1)
<input type="text" id="inputFirst" onchange="mutipleText()">
<input type="text" id="inputSecond" >
function mutipleText(){
var firstInput = $('#inputFirst').val();
$('#inputSecond').val(firstInput)
}