gpt4 book ai didi

javascript - 如何检测 Kendo UI 窗口中哪个按钮触发了事件?

转载 作者:行者123 更新时间:2023-11-28 06:10:44 25 4
gpt4 key购买 nike

我在 Kendo UI Window 上有两个或更多按钮,在某些业务逻辑之后迟早都会调用 .close() 事件。

例如,下面的屏幕:“关闭”按钮将直接关闭窗口,但“保存”按钮将检查某些条件,然后触发关闭。

enter image description here

现在,我已添加条件

that.bind('close', function(){
//check some condition
// here if condition met, let the flow continue else call preventDefault()
});

单击两个按钮时都会触发此拦截。如何检查哪个按钮触发了事件?

FYA,我已经扩展了 Kendo UI Window 小部件,因此 that.bind() 拦截已就位。

最佳答案

$("#closeBtnId").bind("click", function () {

});

$("#saveBtnId").bind("click", function () {

});

关于javascript - 如何检测 Kendo UI 窗口中哪个按钮触发了事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36429285/

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