Показать сообщение отдельно
  #7 (permalink)  
Старый 04.03.2014, 19:56
Аватар для Globus
Аспирант
Отправить личное сообщение для Globus Посмотреть профиль Найти все сообщения от Globus
 
Регистрация: 04.03.2014
Сообщений: 76

тупанул, спасибо! всё работает
+ в репу

<html><head> 

 

</head><body>

<div id="ttx">Это произвольный текст, который как раз должен выводиться в новом окне</div>

<input type="button" value="Открыть окно" onclick="openas()">

<script>var ttxText = document.getElementById('ttx').innerHTML;
function openas() {

mywindow = open('','newokno','width=700,height=700,status=1,menubar=1');

mywindow.document.open();

mywindow.document.write('<html><head><title>Создаём хтмл-документ');
mywindow.document.write('</title></head><body>');
  
mywindow.document.write(ttxText);
 
mywindow.document.write('Это статичный текст');

mywindow.document.write('</body></html>');
 
mywindow.document.close();
}

 
</script>
Ответить с цитированием