⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extinfomsgbox.js

📁 一个自娱自乐的demo 开发环境 apache-tomcat-6.0.16 Mysql 5.1.11 Jdk 1.6 文件结构如下 --MyGame -----MyGam
💻 JS
字号:
// 显示提示对话框 OK Button
function showInfoMessageBox_1(strTitle, strMsg, fun) {
    Ext.Msg.show( {
        title : strTitle,
        msg : strMsg,
        buttons : Ext.Msg.OK,
        minWidth : 200,
        fn : fun,
        icon : Ext.MessageBox.INFO
    });
}

// 显示提示对话框 OK Button
function showInfoMessageBox_2(strTitle, strMsg) {
    Ext.Msg.show( {
        title : strTitle,
        msg : strMsg,
        buttons : Ext.Msg.OK,
        minWidth : 200,
        icon : Ext.MessageBox.INFO
    });
}
// 显示提示对话框 OKCANCEL Button
function showInfoMessageBox_3(strTitle, strMsg, fun){
	Ext.Msg.show( {
        title : strTitle,
        msg : strMsg,
        buttons : Ext.Msg.OKCANCEL,
        minWidth : 200,
        fn : fun,
        icon : Ext.MessageBox.QUESTION
    });
}
function inputInfoBox(strTitle, strMsg, fn) {
    Ext.Msg.prompt(strTitle, strMsg, fn);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -