jquery UI 对话框按钮 - 返回 true?
buttons : {
Ok: function() {
$(this).dialog('close');
return (typeof callback == 'string') ?
window.location.href = callback :
callback();
},
Cancel: function() {
$(this).dialog('close');
return false;
}
},
对于 jquery UI,我需要返回与 javascript 确认消息 a 1 和 a 0 相同的值
我假设我执行了回调,但不确定如何引用回调...
编辑< /em>
jsp 开发人员表示,他不一定需要回调,但需要能够执行类似以下操作:
if (answer == true) {
//do something
}
else {
//do something different
}
我该怎么做?
buttons : {
Ok: function() {
$(this).dialog('close');
return (typeof callback == 'string') ?
window.location.href = callback :
callback();
},
Cancel: function() {
$(this).dialog('close');
return false;
}
},
For jquery UI, I need to return values the same as a javascript confirm message a 1 and a 0
I assume I do a callback, but unsure how to reference the callback...
EDIT
jsp developer stated that he doesn't neccessarily need a callback, but needs to be able to do something similar to:
if (answer == true) {
//do something
}
else {
//do something different
}
how would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法在 jquery 对话框中执行返回操作。
你可以做什么:
You cannot do a return in a jquery dialog.
What you can do: