icons.jsp 693 B

1234567891011121314151617181920212223242526272829
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <html>
  5. <head>
  6. <title>选择图标</title>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <style type="text/css">
  9. body{
  10. overflow:hidden;
  11. }
  12. </style>
  13. <script type="text/javascript">
  14. /*KILLDIALOG*/
  15. var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
  16. function selectIcon(t){
  17. if(t){
  18. //window.returnValue = t;
  19. dialog.get("sucCall")(t);
  20. }
  21. dialog.close();
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <iframe src="icon.jsp" width="100%" frameborder="0" height="100%"></iframe>
  27. </body>
  28. </html>