本文主要是介绍extjs5备忘(1),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Extjs5
1、 安装便携版的U盘appache服务器。然后进入rootdir,清空目录内容,放入自己的内容。
2、 Helloworld
Html:
Index.html如下:
<!DOCTYPE html>
<html>
<head>
<title>Welcome to ExtJS!</title>
<link rel="stylesheet"type="text/css"href="ext/build/packages/ext-theme-neptune/build/resources/ext-theme-neptune-all.css">
<script type="text/javascript"src="ext/build/ext-all.js"></script>
<scripttype="text/javascript"src="ext/trial/5.0.0/build/packages/ext-theme-neptune/build/ext-theme-neptune.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body></body>
</html>
Js:
本博客所有内容是原创,如果转载请注明来源
http://blog.csdn.net/myhaspl/
app.js内容如下:
Ext.application({
name : 'MyApp',
launch : function() {
Ext.create('Ext.Panel', {
renderTo : Ext.getBody(),
width : 200,
height : 150,
bodyPadding : 5,
title : 'Hello World',
html : 'Hello <b>World</b>...'
});
}
});
这篇关于extjs5备忘(1)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!