Ext.MessageBox.confirm()详解 显示一个确认对话框,用来代替JavaScript标准的confirm()方法,具有两个按钮“是”和“否”如果为其提供一个回调函数,则该函数将在单击按钮后被调用(包括右上角的推出按钮),所单击按钮的id将被作为唯一的参数传递到回调函数中。
调用格式:
confirm(String title,String msg,[function fn],[Object scope])
参数说明:
Ext.MessageBox.alert();//相关内容
返回值:
Ext.MessageBox
代码示例:
Ext.MessageBox.confirm的使用方式与alert类似,该确认对话框也是异步执行的不会造成阻塞,因此对于用户确认后才能执行的代码也需要放到回调函数中。传入回调函数中的id是区分用户选择的唯一方法,通过判断该参数来执行不同的操作。
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn