<%@ page contentType="text/html;charset=GB2312" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
    <title>Ext  Example </title>
    <meta http-equiv="content-type" content="text/html; charset=GB2312">
<script src="ext-core-debug.js"></script>
    <script type="text/javascript">
    Ext.onReady(function (){
        //alert('Begin');
    Ext.MessageBox.alert('Status', 'Changes saved successfully.');
   
    })
   </script>
</head>
<body>    
    
</body>
</html>先上段代码
引入ext-core-debug.js没有错,如果改成这们:alert('Begin');//Ext.MessageBox.alert('Status', 'Changes saved successfully.');
可以正确运行!但上面的代码运行报Ext.MessageBox is undefined我看了下api 
http://www.extjs.com/deploy/dev/docs/
Properties Methods Events Direct Link
Class Ext.MessageBox
Package: Ext
Defined In: MessageBox.js
Class: MessageBox
Extends: ObjectUtility class for generating different styles of message boxes. The alias Ext.Msg can also be used.Note that the MessageBox is asynchronous. Unlike a regular JavaScript alert (which will halt browser execution), showing a MessageBox will not cause the code to stop. For this reason, if you have code that should only run after some user feedback from the MessageBox, you must use a callback function (see the function parameter for show for more details).Example usage:// Basic alert:Ext.Msg.alert('Status', 'Changes saved successfully.');
但我在下载的extjs文件里 搜索也没找到 MessageBox.js
在ext-core-debug.js 也没找到相关词上面的api  是 3.0的啊,怎么会没有
如果 要运行上面的效果,还要引用什么js