Estou fazendo em um arquivo .html, quando clicar no botão abra uma popup p/ impressão, até aqui tudo bem! Abre, mas quando clico no botão p/ imprimir não gera erro, mas tb não aparece a tela de impressão, qual seria o motivo? Já tentei self.print, window.print, mas não adianta!
Segue abaixo o código em javascript:
function PopUpWin() {
text = "<html>\n<head>\n<title>Atuador do Sistema de Aquecimento</title>\n</head>\n<body>\n";
text += "<table width='75' border='0' align='center' cellspacing='0' cellpadding='0'>\n";
text += "<tr>\n<td width='324'><div align='right'><a href='javascript:window.print();'><img src='/manualDMChtml/imagens/printer.gif' alt='Clique aqui para imprimir' width='22' height='26' border='0'></a> </div>\n</td>\n";
text += "<td width='304'> <a href='javascript:self.close();'><img src='/manualDMChtml/imagens/close.gif' alt='Clique aqui para fechar' width='24' height='24' border='0'></a>\n</td>\n</tr>\n";
text += "<tr>\n<td colspan='2'><img src='/manualDMChtml/imagens/atuadorSA1big.gif' width='628' height='1018'>\n</td>\n</tr>\n</table>\n";
Question
Guest tamanini
Estou fazendo em um arquivo .html, quando clicar no botão abra uma popup p/ impressão, até aqui tudo bem! Abre, mas quando clico no botão p/ imprimir não gera erro, mas tb não aparece a tela de impressão, qual seria o motivo? Já tentei self.print, window.print, mas não adianta!
Segue abaixo o código em javascript:
function PopUpWin() {
text = "<html>\n<head>\n<title>Atuador do Sistema de Aquecimento</title>\n</head>\n<body>\n";
text += "<table width='75' border='0' align='center' cellspacing='0' cellpadding='0'>\n";
text += "<tr>\n<td width='324'><div align='right'><a href='javascript:window.print();'><img src='/manualDMChtml/imagens/printer.gif' alt='Clique aqui para imprimir' width='22' height='26' border='0'></a> </div>\n</td>\n";
text += "<td width='304'> <a href='javascript:self.close();'><img src='/manualDMChtml/imagens/close.gif' alt='Clique aqui para fechar' width='24' height='24' border='0'></a>\n</td>\n</tr>\n";
text += "<tr>\n<td colspan='2'><img src='/manualDMChtml/imagens/atuadorSA1big.gif' width='628' height='1018'>\n</td>\n</tr>\n</table>\n";
text += "</body>\n</html>"
newWin = window.open('', 'digisystem', 'width=700,height=500,left=60,top=1,status=no,menubar=no,scrollbars=yes')
newWin.document.write(text);
}
// End -->
</script>
Alguém pode me ajudar?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.