私のウェブページには id のサークルがありcircle
ます。今、私が欲しいのは、マウスが円の上に置かれたときにメッセージが表示されることです。JavaScriptファイルの私のコードは次のとおりです。
document.getElementById("circle").onmouseover=function(){
var information = document.getElementById("toast");
message = "hello";
if (alert == null){
var toastHTML = '<div id="toast">' + message + '</div>';
document.body.insertAdjacentHTML('beforeEnd', toastHTML);
}
else
information.style.opacity = 0.9;
intervalCounter = setInterval("hideToast",1000);
};
しかし、いくつかのエラーがあるようです.javascript端末は次のように表示します:
Uncaught TypeError: Cannot set property 'onmouseover' of null