Jump to content

bistok

Neophyte
  • Posts

    1
  • Joined

  • Last visited

Everything posted by bistok

  1. Здравствуйте, на сайте существует длинная форма со множеством input type='text'. Необходимо сделать печать данной формы (только формы, а не всей страницы) Для этого область которую нужно распечатать я помещаю в блок <div id="print" class="contentpane"> </div> И использую следующую ф-цую.... var prtContent = document.getElementById(strid); var prtCSS = '<link rel="stylesheet" href="/templates/css/template.css" type="text/css" />'; var WinPrint = window.open('','','left=50,top=50,width=800,height=640,toolbar=0,scrollbars=1,status=0'); WinPrint.document.write('<div id="print" class="contentpane">'); WinPrint.document.write(prtCSS); WinPrint.document.write(prtContent.innerHTML); WinPrint.document.write('</div>'); WinPrint.document.close(); WinPrint.focus(); WinPrint.print(); /*WinPrint.close();*/ prtContent.innerHTML=strOldOne; Но при открытии нового окна все заполненные значения обнуляются.... в Чем может быть причина? как с этим бороться. в Джаваскрипте плохо разбираюсь(
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy