ext之helloworld
这是helloWorld.html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Ext JS in Action Chapter 01 | Hello World Window</title> <link rel="stylesheet" type="text/css" href="./ext3/resources/css/ext-all.css" /> <script type="text/javascript" src="./ext3/adapter/ext/ext-base.js"></script> <script type="text/javascript" src="./ext3/ext-all-debug.js"></script> <script type="text/javascript"> Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; </script> <script type="text/javascript" src="./helloWorld.js"></script> </head> <body> </body> </html>
这是helloWorld.js
function buildWindow() {
var win = new Ext.Window({
id : 'myWindow',
title : 'My first Ext JS Window',
width : 300,
height : 150,
layout : 'fit',
autoLoad : {
url : 'sayHi.html',
scripts : true
}
});
win.show();
}
Ext.onReady(buildWindow);这是sayHi.html
<div id='fxDiv'>Hello from the <b>world</b> of AJAX!</div>
<script type='text/javascript'>
function highlightWindow() {
var win = Ext.getCmp('myWindow');
var winBody = win.body;
winBody.highlight();
}
highlightWindow.defer(1000);
</script>scripts:true就是执行里面的JavaScript,highlightWindow.defer(1000);的意思就是延迟一秒钟调用highlightWindow函数
相关推荐
InJavaWeTrust 2020-05-15
Chydar 2012-09-20
natejeams 2020-01-15
zcpHappy 2014-01-11
pythonclass 2019-11-07
JF0 2019-11-03
ElementW 2015-02-15
干货集合 2014-05-14
kaiya0 2012-06-13
cscscssjsp 2012-03-05
drinow 2019-07-12
coderMozart 2019-06-30
t0ckh 2012-11-11
中等偏下 2017-02-22
nicepainkiller 2016-07-26
xiaoren 2016-02-10
云帆大数据 2016-01-11