Dalam HTML, atribut onmouseover dicetuskan apabila penuding tetikus bergerak ke atas elemen.
Anda boleh cuba jalankan kod berikut untuk mencapai 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>
Atas ialah kandungan terperinci Laksanakan skrip apabila penunjuk tetikus bergerak ke atas elemen HTML?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!