zk中html页面窗口化输出
getQuickStart(){QuickStartWindow window = new QuickStartWindow();
window.setParent(this);
window.doPopup();}窗口初始化调用
QuickStartWindow.java
public QuickStartWindow() {
this.setMaximizable(true);
this.setMaximized(true);
this.setMinimizable(true);
this.setMinimized(true);
this.setSizable(true);
this.setClosable(true);
this.setWidth("800px");
this.setHeight("50%");
this.setTitle("快速上手");
this.setStyle("left:120px;top:120px;");
Iframe iframe = new Iframe();
iframe.setStyle("border:0;margin:0;padding:0;width:100%;height:100%;background:#D3EAF6;");
iframe.setSrc("login/quickStart.html");
this.appendChild(iframe);
}设置了窗口的基本属性和vc++中窗口的设置差不多
用来把quickStart.html页面窗口化输出
相关文档:
今天是写第一篇传智播客教程日志,也是我看
JavaScript
视频的第一天。
先说缘由吧。大三还有三个月就要结束了,可我还没有感觉到自己能够有足够的能力找到份好工作,大学期间学到的都是些皮毛和理论,我不想到了找工作的时候,面试官问我会
XXX
吗?我说不会。因此我想通过培训增加自己的竞争力。我报了本地的一家
I ......
今天在如下代码中:
********************************************************
<p><font color="blue">操作步骤:1、选择输出可选项 2、查询 3、输出
<br>
************************************************** ......
在html中,即使我们没有指定页面元素显示的css样式,元素也会按照默认的的标准css样式去显示。因此掌握基本的html标签可以在一定程度上精简你的css代码,现将html标签的默认属性进行一定的汇总如下:
li { display: list-item }
h ......
最近用Axure生成的原型给客户,客户认为左侧的目录树全部展开不便于查看。故增加了一些js脚本,关闭一级以下的目录。
具体方法:
在生成的文件夹中找到_SiteTree.html 文件,之后在html代码最后一行加入如下代码:
<SCRIPT LANGUAGE="JavaScript">
function CloseDiv(id)
{
&nb ......
http://www.htmlcodetutorial.com/images/images_famsupp_220.html
<DIV ALIGN=CENTER>
<MAP NAME="map1">
<AREA
HREF="contacts.html" ALT="Contacts" TITLE="Contacts"
SHAPE=RECT COORDS="6,116,97,184">
<AREA
HREF="products.html" ALT="Products" TITLE="Products"
SHAPE=C ......