私はJavaScriptが初めてなので、これを行う方法が正確にはわかりません。基本的に、私のウェブサイトには、特定の入力ボックスにカーソルを合わせると表示される一種のツールチップがあります。これは私のJavaScriptです:
function showTip () {
firstnameTip.style.display = "inline";
}
function hideTip () {
firstnameTip.style.display = "none";
}
/* link HTML elements to corresponding event function */
function init () {
/* link the variables to the HTML elements */
firstnameTip = document.getElementById("firstnameTip");
firstname = document.getElementById("firstname");
/* assigns functions to corresponding events */
firstname.onmouseover = showTip; /* for mouse */
firstname.onmouseout = hideTip;
firstname.onfocus = showTip; /* for cursor on input field */
firstname.onblur = hideTip; /* for cursor moving out */
}
/* execute the initialisation function once the window*/
window.onload = init;
基本的に私が望む機能は、「firstname」にカーソルを合わせると、firstnameTip が表示され、lastname (lastnameTip) などの他のものについても同様です。
単純な質問ですが、いろいろ試しましたがわかりません。誰にもアイデアはありますか?ありがとう。