Jump to content
  • 0

При открытии нового окна window.open, слетают значения в input text


bistok
 Share

Question

Здравствуйте,

на сайте существует длинная форма со множеством 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;

Но при открытии нового окна все заполненные значения обнуляются....

в Чем может быть причина? как с этим бороться. в Джаваскрипте плохо разбираюсь(

Link to comment
Share on other sites

2 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.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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