点击一个 input 把 另一个 input 清空 | 2019
2019-01-23 本文已影响7人
OSong
调用方法 onclick="setadisable()"
<div>
<td>
<input type="text" id="one" name="XXXXX" onclick="setTwoDisable()" >
</td>
<td>
<input type="text" id="two" name="companyname" onclick="setOneDisable()">
</td>
</div>
<script type="text/javascript">
//将 id 为 two 的 input 框的 value 值清除
function setTwoDisable()
{
$('#two').val('');
}
//将 id 为 one 的 input 框的 value 值清除
function setOneDisable()
{
$('#one').val('');
}
</script>