Maison >interface Web >js tutoriel >ExtJS 2.0实用简明教程 之ExtJS版的Hello_extjs

ExtJS 2.0实用简明教程 之ExtJS版的Hello_extjs

WBOY
WBOYoriginal
2016-05-16 18:53:261090parcourir
复制代码 代码如下:




ExtJS



<script> <BR>Ext.onReady(function() <BR>{ <BR>Ext.MessageBox.alert("hello","Hello,easyjf open source"); <BR>}); <BR></script>






进一步,我们可以在页面上显示一个窗口,代码如下:
复制代码 代码如下:

<script> <BR>Ext.onReady(function() <BR>{ <BR>var win=new Ext.Window({title:"hello",width:300,height:200,html:'<h1>Hello,easyjf open source'}); <BR>win.show(); <BR>}); <BR></script>

在浏览hello.html,即可得在屏幕上显示一个窗口,如图xxx所示。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn