123456789101112131415161718192021222324252627282930 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>选择模版</title>
- <script type="text/javascript">
- /*KILLDIALOG*/
- var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
- function selectTemplate(template){
-
- //window.returnValue=obj;
- dialog.get('sucCall')(template);
-
- dialog.close();
- }
- </script>
- <style type="text/css">
- div.bottom{text-align: center;padding-top: 10px;}
- html,body{width:100%;height:100%;margin: 0 0 0 0;padding: 0 0 0 0 ;overflow: hidden;}
- </style>
- </head>
- <body>
- <iframe src="dialog.ht" width="100%" height="100%" frameborder="0"></iframe>
- </body>
- </html>
|