customizeDialogPage.html 774 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title></title>
  7. </head>
  8. <body>
  9. <div class="content">
  10. <h1>测试页面</h1>
  11. </div>
  12. <!--页面中一定要引入internal.js为了能直接使用当前打开dialog的实例变量-->
  13. <!--internal.js默认是放到dialogs目录下的-->
  14. <script type="text/javascript" src="../dialogs/internal.js"></script>
  15. <script>
  16. //可以直接使用以下全局变量
  17. //当前打开dialog的实例变量
  18. alert('editor: '+editor);
  19. //一些常用工具
  20. alert('domUtils: '+domUtils);
  21. alert('utils: '+utils);
  22. alert('browser: '+browser);
  23. </script>
  24. </body>
  25. </html>