ExtJs----Hello World

Extjs版本为2.1

代码框架如下:

ExtJs----Hello World

具体代码如下:


<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello </title>
    <link rel="stylesheet" type="text/css" href="resources/css/ext-all.css" />
    <script type="text/javascript" src="resources/javascript/ext-base.js"></script>
    <script type="text/javascript" src="resources/javascript/ext-all.js"></script>

    <script type="text/javascript">
      Ext.onReady(function(){
    	  Ext.MessageBox.alert("hello","Hello  World !");
      });
    </script>
</head>
<body>
</body>
</html>


运行结果为:

ExtJs----Hello World

你可能感兴趣的:(world,hello)