function do_print(id_strstr)//id-str 列印區域的id
{
var el = document.getElementById(id_str);
var iframe = document.createElement('IFRAME');
var doc = null;
iframe.Attribute( style', 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
document.body.appendChild(iframe);
doc = iframe.contentWindow. document;
// 引入列印的專有CSS樣式,www.111Cn.net依實際修改
doc.write("
");
doc.write('
' el.innerHTML '
');
doc.close();
iframe.contentWindow.focus() ;
iframe.contentWindow.print();
if (navigator.userAgent.indexOf("MSIE") > 0)
{
document.body.removeChild(iframe);
}
3. 測試
程式碼如下:
<script><BR>$(document).ready(function(){ $("input#biuuu_button").click(function(){<P>
$("div#myPrintArea").printArea();<P>
<BR>});<BR>});<BR></script>
.....文字列印部分.....