???????
?????? Element ???? HTML ? load ??????????????
?????????????? load ?? HTML ?????????
???????
Code:
<html>
<head>
<title>test</title>
<link href="lib/ext/resources/css/ext-all.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="lib/ext/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="lib/ext/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function() {
var menu1 = new Ext.Action({
text: 'Menu1',
handler: function() {
Ext.get('main').load({
url: 'test.html',
scripts: true,
nocache: true
});
}
});
var menu2 = new Ext.Action({
text: 'Menu2',
handler: function() {
Ext.get('main').load({
url: 'test2.html',
scripts: true,
nocache: true
});
}
});
var panel = new Ext.Panel({
title: 'TEST',
width:600,
height:300,
tbar:[ menu1, menu2 ],
html: '<div id="main"></div>',
renderTo: 'contents'
});
});
</script>
</head>
<body>
<div id="contents"></div>
</body>
</html>
load ?? HTML ?????
Code:
<script type="text/javascript" src="js/sample.js"></script>
???? Javascript ????????????????????????? HTML ????????
??????? Javascript ????? <HEAD> ??????????????
load ?? HTML ?????????????????????? Javascript ??????????
?????????????????????
???????????