クリックした同じテキスト フィールドをクリアする方法についてオンラインで多くの例を見つけましたが、ユーザーにテキスト フィールド 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%>">