<!--测试自定义事件 trigger--> <script> $(function () { var meEvent = $.Event("custom"); $("body").on("custom",function () { console.log("test custom"); }) $("#testBtn").on("click",function () { $("body").trigger("custom"); }) }) </script>
时间: 2024-12-26 09:22:45