我在网上找到了很多关于如何清除您单击的相同文本字段的示例,但我希望用户单击文本字段 1 并清除文本字段 2,反之亦然。
已经为此苦苦挣扎了好几个小时。我遇到的问题是我没有错误,没有输出,而且它不起作用。我不知道问题是什么。
我的代码:
<jsp:useBean id="speed" class="java.lang.String" scope="request" />
<jsp:useBean id="force" class="java.lang.String" scope="request" />
<script>
function clearSpeed() {
var x = document.getElementByID(speed);
x.value = "";
}
function clearForce() {
var x = document.getElementByID(force);
x.value = "";
}
</script>
<input type="text" id="speed" onfocus='clearForce()' value="<%=speed%>">
<input type="text" id="force" onfocus='clearSpeed()' value="<%=force%>">