7

在浏览器中执行以下代码时,它不会显示警报,它只是显示空白页面。以下代码中有任何问题请帮助我。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text.html; charset=utf-8">

<title> First Program </title>

<link rel="stylesheet" type="text/css" href ="http://localhost:8080/ext/ext-4.2.1.883/resources/css/ext-all.css"/>
<script type = "text/javascript" src = "http://localhost:8080/ext/ext-4.2.1.883/ext-all-dev.js"/>

<script type="text/javascript">
    Ext.onReady(function(){
        //  alert("We are ready to go!");
        Ext.Msg.alert("Hello World");
    });
</script>
</head>
<body>

</body>
</html>
4

1 回答 1

10

您没有正确调用该方法。Ext.Msg.alert接受两个参数,title并且message,正如您在文档中看到的那样。

于 2013-10-02T19:08:53.173 回答