ExtJs 入门笔记1[Hello World]

来源:互联网 发布:淘宝一元拍是真的吗 编辑:程序博客网 时间:2024/04/30 15:12


<!doctype html><html><head>    <title>MVC</title>    <meta charset="UTF-8">    <link href="./ext-6.2.0/build/classic/theme-neptune/resources/theme-neptune-all.css" rel="stylesheet" />    <script src="./ext-6.2.0/build/ext-all.js"></script>    <script src="./ext-6.2.0/ext-bootstrap.js"></script>    <script src="./ext-6.2.0/build/classic/locale/locale-zh_CN.js"></script>    <script type="text/javascript">    Ext.onReady(function () {        Ext.MessageBox.alert('标题', 'Hello World!');    });    </script></head><body></body></html>


1 1