| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <%@ page language="java" contentType="text/html;charset=GBK" pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>ÔÆ±à¼</title>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css" />
- <script src="/shares/js/jquery-1.8.2.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script type="text/javascript">
- var tab1 = null;
- $(function() {
- $("#officeFrame")
- .attr(
- "src",
- "${pageContext.request.contextPath}/fileCloudeditor.do?task=edit&fileId=${fileId}&folder=${folder}&isNewCreate=${isNewCreate}");
- });
- function setValue(fileId, fileName) {
- $("#docid").val(fileId);
- }
- </script>
- <style>
- * {
- margin: 0px;
- padding: 0px;
- }
- </style>
- </head>
- <body style="width: 100%; height: 900px;">
- <form action="fileCloudeditor.do" method="post" id="form1" name="form1">
- <iframe name="officeFrame" id="officeFrame" src="" frameborder="0" scrolling="no" width="100%" height="100%" style="margin-top: 3px;"> </iframe>
- </form>
- </body>
- </html>
|