Показать сообщение отдельно
  #8 (permalink)  
Старый 24.08.2017, 20:10
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

var win = window.open("about:blank", null, "width=400,height=300");
var doc = win.document;
doc.open("text/html");
doc.write('<p>Сложение</p>');
doc.write("<input name='pole1' type='text' size='30' placeholder='Поле 1'></br></br>");
doc.write("<input name='pole2' type='text' size='30' placeholder='Поле 2'></br></br>");
doc.write("<input value='Посчитать' onclick='summ();' type='button'>");
doc.write('<p>Сумма </p>');
doc.write("<script>function summ(){document.querySelectorAll('p')[1].textContent = document.querySelectorAll('input')[0].value*1+document.querySelectorAll('input')[1].value*1;};<\/script>");
doc.close();
Ответить с цитированием