日期:2014-05-16 浏览次数:20336 次
时间:2012年10月10日22:28:44
ExtJs的hello world:
//在使用ExtJs前要引入下面两个文件
<linkrel="stylesheet"type="text/css"href="extjs/resources/css/ext-all.css">
<script type="text/javascript"src="extjs/ext-all.js"> </script>
//ExtJs中的Ext.onReady就是等页面加载完后执行
(function(){
Ext.onReady(function(){
//alert("aa");
//使用提示框显示hello world
Ext.MessageBox.alert("hello","hello world");
var array=[1,2,3,4,-1,-3,-2];
//遍历数组下的所有元素知道返回fasle停止遍历
Ext.Array.every(array,function(item){
if(item>0)
&n