<form action="formoneaction" method="post">
<input type="text" id="t1" />
<button type="sumbit" class="btn">Insert</button>
</form>
<form action="formtwoaction" method="post">
<input type="text" id="t2" />
<button type="sumbit" class="btn">Insert</button>
</form>
<script>
var t1 = document.getElementById('t1');
t1.onkeyup = t1.onchange = function() {
document.getElementById('t2').value = this.value;
};
</script>
当两个元素分开形式时,如何让脚本工作?当脚本没有形式时,脚本就可以工作。
我之前从未学过JS,所以当有人解释一堆行话时,我可能不太了解。对不起,我会尽我所能!
答案 0 :(得分:0)