本文共 574 字,大约阅读时间需要 1 分钟。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> div{ width: 150px; height: 100px; background-color: lightskyblue; } </style> <script src="../js/jquery-3.5.1.js"></script> <script> //编辑事件 //点击鼠标右键切换背景颜色 $(function () { $("div").contextmenu(function () { $(this).css("background-color","hotpink"); return false }); }); </script></head><body> <div></div></body></html>
转载地址:http://rgem.baihongyu.com/