<! DOCTYPE html>
< html >
< head >
< title >ExtJs</ title >
< meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
< link rel="stylesheet" type="text/css" href="ExtJs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css">
< script type="text/javascript" src="ExtJs/ext-all.js"></ script >
< script type="text/javascript" src="ExtJs/bootstrap.js"></ script >
< script type="text/javascript" src="ExtJs/packages/ext-theme-crisp/build/ext-theme-crisp.js"></ script >
</ head >
< body >
< script type="text/javascript">
function hello() {
alert('hello');
}
Ext.onReady(function(){
function hello3(){
alert('hello3');
return true;
}
function hello4(){
alert('hello4');
return false;
}
var button = Ext.get('btn3');
button.addListener('click', hello3);
button.addListener('click', hello4);
})
</ script >
< body >
< div id='id01' >hello, this word.</ div >
< input type="button" id="btn" value="DHTML CLICK" onclick="hello()">
< input type="button" id="btn12" value="DOM CLICK">
< input type="button" id="btn3" value="ExtJs CLICK">
< script language="JavaScript">
function hello1(){
alert('hello1');
}
function hello2(){
alert('hello2');
}
var button = document.getElementById('btn12');
console.log(button);
button.addEventListener('click', hello1, false);
button.addEventListener('click', hello2, false);
</ script >
</ body >
</ html >
|