先建一个a.html的空白文件。
<html>
<head>
<title>Untitleddo
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<script language="javascript">
var subwin;
function openwin()
{
subwin=window.open("a.html","100","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes, width=282,height=195,left=10,top=10");
}
function closewin()
{
subwin.close();
}
function printwin()
{
bdhtml=subwin.document.body.innerHTML;
sprnstr="<!--startprint-->";
eprnstr="<!--endprint-->";
prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
subwin.document.body.innerHTML=prnhtml;
//window.resizeTo(600, 350);
subwin.print();
}
function printing()
{
openwin();
printwin();
closewin();
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<a href="javascript
penwin();">openwin</a><br>
<a href="javascript
rintwin();">printwin</a><br>
<a href="javascript
rinting();">printandclosewin</a><br>
<!--startprint-->
<font color="#000066">选择到海外留学可能是一生中最重要的决定,因为这不仅影响你的事业前途和长期发展,而且给予你难得的机会去亲自体验新的文化,新的风俗人情和新的思想。<br>英国是一个与别不同的真正的学习目的地:更欢迎、更乐于帮助留学生,对留学生的需求和抱负更包容。 </font>
<!--endprint-->
</body>
</html>