<!DOCTYPE html> <html> <head> </head> <body style="font:14px/1.5 'Odor Mean Chey'">ចុចឬអូស mouse នៅលើឃ្លានេះ.
<input type="button" value="button" /> <script> $("p").on({ mouseenter: function(){ $(this).css("background-color", "gray"); }, mouseleave: function(){ $(this).css("background-color", "lightblue"); }, click: function(){ $(this).css("background-color", "yellow"); } }); $("input").click(function(){ $("p").off("click"); }); </script> </body> </html>
ចុចឬអូស mouse នៅលើឃ្លានេះ.