另外加一个页面dlg.htm,用它去载入HTML编辑器editor.htm主页面设置:
dlg=window.showModalDialog("dlg.","600,500,editor.htm,HTML编辑器","status=no,help=no");dlg.htm页面内容
<html>
<head><script>
s=window.dialogArguments+"";
v=s.split(/,/);
if (v.length>0)
document.write ("<title>"+v[3]+"</title>");</script>
<body>
<script>
if (v.length>0){document.write ('<table id=dlg border=0 width='+v[0]+'px height='+v[1]+'px cellspacing=0 cellpadding=0><tr><td width=100%>');
document.write ('<IFRAME name=ifr frameborder=0 scrolling=no height=100%  width=100% src="'+v[2]+'"></IFRAME>');
document.write ('</td></tr></table>');v[0]=v[0]*1+6;
v[1]=v[1]*1+26;
window.dialogWidth =v[0]+"px";
window.dialogHeight=v[1]+"px";
//document.write (v[3]);
}
</script>
</body>
</html>