asp 的打印,如何控制打印范围?
展开全部
js操作dom方法对窗体指定标记内文字进行打印,所以使用时需要定义相关的标签及其样式(文字大小、字体之类)。
1. <script type="text/javascript">
2. ///***********************
3. ///打印指定区域页面
4. ///说明:obj–通过getElementById或其它方式获取标签标识,打印此obj内的文字
5. ///开发:王洪剑
6. ///日期:2009-8-7
7. function startPrint(obj)
8. {
9. var oWin=window.open("","_blank");
10. var strPrint="<h4 style=’font-size:18px; text-align:center;’>打印预览区</h4>\n";
11.
12. strPrint=strPrint + "<script type=\"text/javascript\">\n";
13. strPrint=strPrint + "function printWin()\n";
14. strPrint=strPrint + "{";
15. strPrint=strPrint + "var oWin=window.open(\"\",\"_blank\");\n";
16. strPrint=strPrint + "oWin.document.write(document.getElementById(\"content\").innerHTML);\n";
17. strPrint=strPrint + "oWin.focus();\n";
18. strPrint=strPrint + "oWin.document.close();\n";
19. strPrint=strPrint + "oWin.print()\n";
20. strPrint=strPrint + "oWin.close()\n";
21. strPrint=strPrint + "}\n";
22. strPrint=strPrint + "<\/script>\n";
23.
24. strPrint=strPrint + "<hr size=’1′ />\n";
25. strPrint=strPrint + "<div id=\"content\">\n";
26. strPrint=strPrint + obj.innerHTML + "\n";
27. strPrint=strPrint + "</div>\n";
28. strPrint=strPrint + "<hr size=’1′ />\n";
29. strPrint=strPrint + "<div style=’text- align:center’><button onclick=’printWin()’ style=’padding- left:4px;padding-right:4px;’> 打 印</button><button onclick='window.opener=null; window.close();' style='padding-left:4px;padding-right:4px;'>关 闭& lt;/button></div>\n";
30. oWin.document.write(strPrint);
31. oWin.focus();
32. oWin.document.close();
33. }
34. </script>
35.
36. <button id="btnPrint" onclick="startPrint(document.getElementById(’content’))">打印内容</button>
37. <div id="content">
38. <div style="font-size:12px;color:#333;">
39. 这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容
40. </div>
41. </div>
1. <script type="text/javascript">
2. ///***********************
3. ///打印指定区域页面
4. ///说明:obj–通过getElementById或其它方式获取标签标识,打印此obj内的文字
5. ///开发:王洪剑
6. ///日期:2009-8-7
7. function startPrint(obj)
8. {
9. var oWin=window.open("","_blank");
10. var strPrint="<h4 style=’font-size:18px; text-align:center;’>打印预览区</h4>\n";
11.
12. strPrint=strPrint + "<script type=\"text/javascript\">\n";
13. strPrint=strPrint + "function printWin()\n";
14. strPrint=strPrint + "{";
15. strPrint=strPrint + "var oWin=window.open(\"\",\"_blank\");\n";
16. strPrint=strPrint + "oWin.document.write(document.getElementById(\"content\").innerHTML);\n";
17. strPrint=strPrint + "oWin.focus();\n";
18. strPrint=strPrint + "oWin.document.close();\n";
19. strPrint=strPrint + "oWin.print()\n";
20. strPrint=strPrint + "oWin.close()\n";
21. strPrint=strPrint + "}\n";
22. strPrint=strPrint + "<\/script>\n";
23.
24. strPrint=strPrint + "<hr size=’1′ />\n";
25. strPrint=strPrint + "<div id=\"content\">\n";
26. strPrint=strPrint + obj.innerHTML + "\n";
27. strPrint=strPrint + "</div>\n";
28. strPrint=strPrint + "<hr size=’1′ />\n";
29. strPrint=strPrint + "<div style=’text- align:center’><button onclick=’printWin()’ style=’padding- left:4px;padding-right:4px;’> 打 印</button><button onclick='window.opener=null; window.close();' style='padding-left:4px;padding-right:4px;'>关 闭& lt;/button></div>\n";
30. oWin.document.write(strPrint);
31. oWin.focus();
32. oWin.document.close();
33. }
34. </script>
35.
36. <button id="btnPrint" onclick="startPrint(document.getElementById(’content’))">打印内容</button>
37. <div id="content">
38. <div style="font-size:12px;color:#333;">
39. 这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容这里是打印内容
40. </div>
41. </div>
参考资料: http://www.sosuo8.com/article/show.asp?id=2891
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询