Ext js必包含的几个文件

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ext 2.0 Desktop Sample App</title>

 <link rel="stylesheet" type="text/css" href="E:/lib/ext-2.0.2/resources/css/ext-all.css"/>
    <script type="text/javascript" src="E:/lib/ext-2.0.2/adapter/ext/ext-base.js"></script>
    <script type="text/javascript" src="E:/lib/ext-2.0.2/ext-all.js"></script>

  <!-- 这些文件ext-all.css、ext-base.js、ext-all.js都是从官网下载下来的-->

 <script language="javascript">
       
  Ext.onReady(function(){
   Ext.Msg.show({
         title:'Hello',
         msg:'Have you seen my heart?',
         buttons:{
          yes:true,
          no:true,
          cancel:true
          }
         });
   });
   
    </script>
</head>

<body>
  
</body>
</html>

 

posted @ 2012-01-08 20:49  黄辉杰  阅读(494)  评论(0编辑  收藏  举报