12345678910111213141516171819202122232425 |
- <!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=utf-8"/>
- <title></title>
- </head>
- <body>
- <div class="content">
- <h1>测试页面</h1>
- </div>
- <!--页面中一定要引入internal.js为了能直接使用当前打开dialog的实例变量-->
- <!--internal.js默认是放到dialogs目录下的-->
- <script type="text/javascript" src="../dialogs/internal.js"></script>
- <script>
- //可以直接使用以下全局变量
- //当前打开dialog的实例变量
- alert('editor: '+editor);
- //一些常用工具
- alert('domUtils: '+domUtils);
- alert('utils: '+utils);
- alert('browser: '+browser);
- </script>
- </body>
- </html>
|