主题: 在jsp 中不能显示急!!!急!!!
作者: 求一, 发布日期: 2010-07-13 14:54:54, 浏览数: 3608

我在两个项目里面都能显示但是一样的代码在两一个项目中显示不处理。太郁闷了。

已经正确的引入了js 文件

环境是:ibatis+struts1.2

 

代码如下:

 

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
     <script type="text/javascript" charset="utf-8" src="${pageContext.request.contextPath}/js/kindeditor.js"></script>
 <script>
         KE.show({
                 id : 'your_editor_id'
         });
 </script>
 
    <base href="<%=basePath%>">
   
    <title>My JSP 'index.jsp' starting page</title>
 <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">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->
  </head>
 
  <body>
    <textarea id="your_editor_id" name="your_editor_id" cols="100" rows="8" style="width:700px;height:300px;"></textarea>

  </body>
</html>

发表新帖 发表回复