日期:2014-05-17  浏览次数:21070 次

在浏览页面时,可以设置页面中文字大中小,外加打印按钮的调用。
在浏览页面时,可以设置页面中文字大中小,外加打印按钮的调用。
请高手们回复呀。我是菜鸟

------解决方案--------------------
设置大中小用不同的样式表

打印:
<script language= "javascript " type= "text/javascript ">
function PreviewReferralPrint()
{
bdhtml=window.document.body.innerHTML;
sprnstr= " <!--startprint--> ";
eprnstr= " <!--endprint--> ";
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
window.document.body.innerHTML=prnhtml;
window.print();
window.parent.returnValue= '0 ';window.parent.close();
}
</script>