extjs 6
Posted phpfeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs 6相关的知识,希望对你有一定的参考价值。
因为最近公司要写一个项目前台所以开始学习extjs前端框架,希望一起共勉。
那么我们的教程就从 Hello World 讲起。
helloWorld.js
-
Ext.onReady(function() {
-
Ext.MessageBox.alert(‘系统提示‘, ‘Hello World!‘);
-
});
helloWorld.jsp
-
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
-
-
<html>
-
<head>
-
<%
-
String path = request.getContextPath();
-
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
-
%>
-
<title>hello Word</title>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<meta http-equiv="pragma" content="no-cache">
-
<meta http-equiv="cache-control" content="no-cache">
-
<meta http-equiv="expires" content="0">
-
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
-
<meta http-equiv="description" content="This is my page">
-
<!-- 引入ExtJs样式 -->
-
<link rel="stylesheet" type="text/css" href="<%=basePath %>static/ext-6.0.0.415/build/classic/theme-neptune/resources/theme-neptune-all.css">
-
<!-- 引入ExtJs核心Js -->
-
<script type="text/javascript" src="<%=basePath %>static/ext-6.0.0.415/ext-bootstrap.js"></script>
-
<script type="text/javascript" src="<%=basePath %>static/ext-6.0.0.415/build/ext-all.js"></script>
-
<script type="text/javascript" src="<%=basePath %>static/ext-6.0.0.415/build/classic/locale/locale-zh_CN.js"></script>
-
<!-- 页面Js -->
-
<script type="text/javascript" src="<%=basePath %>static/js/helloWord.js"></script>
-
</head>
-
<body>
-
</body>
-
</html>
说明:
(1)Ext.onReady():ExtJS Application的入口...就相当于Java或C#的main函数.
(2)Ext.MessageBox.alert():弹出对话框。
以上是关于extjs 6的主要内容,如果未能解决你的问题,请参考以下文章