gpt4 book ai didi

jquery - 在 JQuery 中仅触发一个事件

转载 作者:行者123 更新时间:2023-12-01 01:58:30 25 4
gpt4 key购买 nike

如何让 JQuery 只触发您设置的最后一个事件处理程序?例如,在这个 test case ,我只想启动最后一个警报(“世界”)。

最佳答案

这是一种实现方法

$("#test").click(function() { alert('hello'); return false; });
// Before the last event handler.
$("#test").unbind("click");
$("#test").click(function() { alert('world'); return false; });

关于jquery - 在 JQuery 中仅触发一个事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6773054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com