代码如下,firefox无法显示IE正常,
菜鸟求学,坐等。<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
  <head>
    <title>hello.html</title>

    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
   <link rel="stylesheet" type="text/css" href="extjs\resources\css\ext-all.css">
   <script type="text/javascript" src="extjs\ext-all.js"></script>
  </head>
  
  <body>
    This is my HTML page. <br>
    <script type="text/javascript">
     Ext.onReady(function (){
     var o={
     width:500,
     height:500,
     title:"第一个"
     };
     var win=new Ext.Window(o);
win.show();
     });
    </script>
  </body>
</html>