js打印时怎么设置每页打印方向
<script language="javascript">
function printme() {
bdhtml = window.document.body.innerHTML;
document.body.innerHTML = document.getElementById('div1').innerHTML;
window.print();
window.document.body.innerHTML = bdhtml;
}
</script>
<a href="javascript:printme()" target="_self">打印</a>
<%=Image2%>
<div id='div1'>
<html>
<head>
<link href="../../../Styles/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<%=Image1%>
</body>
</html>
</div>
代码是这样的 我动态赋值Image1,
加载的是一组图片,横向、纵向图片都有,
我想打印这组图片,怎么根据图片的高、宽设置每页的打印方向
------解决方案--------------------window.print(); 用的是浏览器打印,当然只能在浏览器的打印设置里面设置