zoukankan      html  css  js  c++  java
  • ExtJS6.2版本---组件学习

    1.按装插件spket--代码提示功能
    2.准备加载提示功能

    app.js
    Ext.onReady(
        function helloword(){
            //加载函数
            Ext.MessageBox.alert("欢迎title","提示内容");    //调用MessageBox方法--弹出提示框
        }
    );

    index.html

    <!DOCTYPE html>
    <html>
        <head>
            <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
            <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
            <meta charset="utf-8" />
            <title>System</title>
            <link rel="stylesheet" type="text/css" href="extjs/themes/neptune/ext-theme-neptune-all.css" />
            
            <script src="extjs/ext-all.js" type="text/javascript"></script>
            <script src="extjs/ext-theme-neptune.js" type="text/javascript"></script>
            <script src="extjs/ext-locale-zh_CN.js" type="text/javascript"></script>
            <script src="app.js" type="text/javascript"></script>
        </head>
        <body>
            
        </body>
    </html>

  • 相关阅读:
    C语言II博客作业01
    学期总结
    C语言|博客作业01
    C语言|博客作业02
    C语言|博客作业08
    C语言|博客作业07
    C语言|博客作业06
    C语言|博客作业05
    C语言|博客作业04
    c语言||博客作业04
  • 原文地址:https://www.cnblogs.com/fdxjava/p/10681827.html
Copyright © 2011-2022 走看看