我的要求是,我需要打开两个窗口,但第一个打印和关闭后必须打开第二个窗口。有可能吗?
但第二个窗口同时打开第一个窗口。
HTML / JSP代码 打印
JAVA SCRIPT function print(id){
var data=document.getElementById(id).innerHTML;
var mywindow = window.open("",'TITLE','left=0,top=0,width=800,height=400,channelmode=no,titlebar=yes,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,copyhistory=no,directories=no,status=yes');
mywindow.document.write('<html><head><title>TITLE</title>');
mywindow.document.write("<style type='text/css'>");
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.document.close();
mywindow.focus();
mywindow.print();
mywindow.close();
return true;
}
function popup(){ var mysecondWindow = window.open(“”,'SecUtdOfficialWebsite','width = 400,height = 400'); }
打印
答案 0 :(得分:1)
doConfirm("Are you sure?", function yes()
{
form.submit();
}, function no()
{
// do nothing
});