s.$content.find('.ok').on(cs.clickEvent, function (event) { event.preventDefault(); event.stopPropagation(); AIRBOX.popinGeneric.show({ type: 'confirm', message: s.lngArray.dialup_confirm_save_to_draft || "confirm save to draft", action: function () { saveMessage(s.$phone.val(), s.$message.val(), s.callback); _hide(); }, cancel: function () { s.$content.find('.ok').trigger("focus"); } }); });
时间: 2024-02-14 14:32:19 浏览: 59
网页右键ie不支持event.preventDefault和event.returnValue (需要加window)
这段代码是一个事件绑定函数,当用户点击 s.$content 元素内部的 class 为 ok 的元素时,会触发一个弹窗,并且该弹窗有两个按钮,一个为确认按钮(action),一个为取消按钮(cancel)。当点击确认按钮时,会执行 saveMessage 函数,并且隐藏该弹窗;当点击取消按钮时,会让 ok 元素重新获得焦点。其中 type 为 confirm,表示该弹窗是一个确认框。message 为弹窗的提示信息。
阅读全文