0

在实际执行单击事件之前,我需要询问用户(使用标准 Ext.MessageBox.confirm 对话框),因为在 href 配置中设置了服务器的 php 场景。

当我单击按钮 ExtJS 首先调用 php 场景(在其他浏览器的窗口中 - 默认情况下),然后才显示 MessageBox 对话框。但是只有当他说“是”时,我才需要先询问用户并调用 php 场景。

4

1 回答 1

0
function   yoursMethod([config])
{
 // call you sripts there
 // check what a button you pressed and then call scenario
 // you can see [config] in documentation http://docs.sencha.com/ext-js/4-1/#!/api/Ext.window.MessageBox-method-show
 }

Ext.MessageBox.confirm({
   title: ' Sample ',
   msg: 'Message',
   fn: yoursMethod
});
于 2012-12-25T11:38:10.703 回答