HTML에서는 마우스 포인터가 요소 위로 이동할 때 onmouseover 속성이 트리거됩니다.
다음 코드를 실행하여 onmouseover property−
<!DOCTYPE html> <html> <body> <h3 id = "myid" onmouseover = "display()"> This is demo heading. </h3> <p>Keep the mouse cursor on the heading to change the color.</p> <script> function display() { document.getElementById("myid").style.color = "red"; } </script> </body> </html>을 달성할 수 있습니다.
위 내용은 마우스 포인터가 HTML 요소 위로 이동할 때 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!