1、打开MyEclipse,新建一个Web Project项目,名为“dojo_test”。如图:
2、在WebRoot目录下新建一个scripts目录,用于存放javascript代码。
3、下载最新的dojo(下载地址:http://download.dojotoolkit.org/release-1.8.1/dojo-release-1.8.1.zip)。
4、将下载的dojo解压到scripts目录下。如图:
5、新建一个jsp页面,名为“helloworld.jsp”。
6、在helloworld.jsp中编写如下代码:
- <%@pagelanguage="java"import="java.util.*"pageEncoding="UTF-8"%>
- <%
- Stringpath=request.getContextPath();
- StringbasePath=request.getScheme()+"://"
- +request.getServerName()+":"+request.getServerPort()
- +path+"/";
- %>
- <!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
- <html>
- <head>
- <basehref="<%=basePath%>">
- <title>Dojo,Helloworld!</title>
- <Metahttp-equiv="pragma"content="no-cache">
- <Metahttp-equiv="cache-control"content="no-cache">
- <Metahttp-equiv="expires"content="0">
- <Metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
- <Metahttp-equiv="description"content="Thisismypage">
- <!--引入dojo.js-->
- <scripttype="text/javascript"src="scripts/dojo-release-1.8.1/dojo/dojo.js"></script>
- <scripttype="text/javascript">
- dojo.addOnLoad(function(){
- dojo.create("div",{innerHTML:"这是一个由Dojo加载的【Helloworld!】"},dojo.body());
- });
- </script>
- </head>
- <body>
- <h1>Dojo的第一个示例</h1>
- </body>
- </html>
7、启动tomcat服务器,输入“http://localhost:8080/dojo_test/helloworld.jsp”。可见如图所示的效果:
原文链接:https://www.f2er.com/dojo/291485.html