###JAVA Scriptが気付いたら動いていなかった
以前に書いて検証して安心していたら、動かなくなっていて、慌てているところです。
Google Chromeの最新版と
Microsoft Edgeで再度検証しましたが、原因を特定できていません。
ソースは変更していないつもりですが、改めて見直してみても、エラーとなりそうな個所を見つけられません。
ソースではないとしたら、どんなことを直せばいいでしょうか。
以下コードです。
<html> <head> <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script type="text/javascript"> window.onload=function(){ const phone=document.getElementById('phone'); const line=document.getElementById('line'); phone.addEventListener('focus',function(){ phone.innerText='クリックまたはタップして0123-456-7890に電話する'; }); phone.addEventListener('blur',function(){ phone.innerText='電話'; }); phone.addEventListener('mouseover',function(){ phone.innerText='クリックまたはタップして0123-456-7890に電話する'; }); phone.addEventListener('mouseout',function(){ phone.innerText='電話'; }); line.addEventListener('focus',function(){ line.innerText='LINE IDを追加'; }); line.addEventListener('blur',function(){ line.innerText='LINE'(相談専用)'; }); line.addEventListener('mouseover',function(){ line.innerText='LINE IDを追加'; }); line.addEventListener('mouseout',function(){ line.innerText='LINE'; }); } </script> </head> <body style="background-color:#FFFFCC;"> <div style="font-size:18px; color:#000000; text-align: center;"> <p> <a id="phone" href="tel:01234567890">電話</a><br> <a id="line" href="https://line.me/xxxxxxxxxxxx">LINE</a> </p> </div> </body> </html>
上のコードのscriptタグの中のJSが動作してくれません。
###ChromeやEdgeのデバッグツールやオンラインエディタなども使ってみました
デバッグツールでは、使い慣れてないせいもあって、よくわかりませんでした。
オンラインエディタでも、何も変更されませんでした。
ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー