extjs_1 初识

1.从官网http://extjs.org.cn/下载最新extjs 开发包

2、extjs开发包中各个目录文件介绍。

3、第一个简单extjs程序-hello extjs

<%--智能提示--%>   
<script src="extjs4.1/vswd-ext_2.0.2/vswd-ext_2.0.2.js" type="text/javascript"></script>
<%--必备文件--%>
<link href="extjs4.1/resources/css/ext-all.css" rel="stylesheet" type="text/css" />
<script src="extjs4.1/bootstrap.js" type="text/javascript"></script>
<script src="extjs4.1/locale/ext-lang-zh_CN.js" type="text/javascript"></script>

 

 <script type="text/javascript" language="javascript">
        Ext.onReady(function () {
            Ext.MessageBox.alert("hello world","hello Extjs4.1");
        })
  </script>

 4、运行效果:

posted @ 2012-06-19 14:29  望月狼  阅读(210)  评论(0编辑  收藏  举报