一个程序猿成长记:两个文本输入框同步!

时间:2021-02-21 19:39:26

给商品名称增加一个onkeyup事件,第一个输入框输入数据的时候,自动赋值到商品简称中!

<th>商品名称<font color="#FF0000">*</font></th>

<td><input type="text" id="name" name="name" style="width:150px" value="${vo.name}" onkeyup= "getValue()"></td>
<th>商品简称</th>

<td><input type="text" id="spjc" name="spjc" style="width:150px" value="${vo.spjc}"></td>

onkeyup事件!

function getValue() 

document.getElementById( "spjc").value = document.getElementById( "name").value;