ExtJS环境搭建

来源:互联网 发布:yy头像图片制作软件 编辑:程序博客网 时间:2024/06/03 18:43

需要的第三方资源:http://pan.baidu.com/s/1eSLlzvc



index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>Ext-----Test</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/ext-all.css">

  <!-- js -->
  <script type="text/javascript" src="js/ext-base.js"></script>
  <script type="text/javascript" src="js/ext-all.js"></script>
  <script type="text/javascript">
  Ext.onReady(function(){
  Ext.MessageBox.alert("hello world","hello world");
  });

  </script>
  </head>
  <body>
  </body>
</html>






0 0