Advertisement
KirillMysnik

Untitled

Nov 19th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.63 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <script>
  6.             document.addEventListener('DOMContentLoaded', function (e) {
  7.                 var textInput = document.body.appendChild(document.createElement('input'));
  8.                 textInput.type = 'text';
  9.                 textInput.placeholder = 'Введите вашу строку';
  10.  
  11.                 var btn = document.body.appendChild(document.createElement('input'));
  12.                 btn.type = 'button';
  13.                 btn.value = "Проверить";
  14.                 btn.addEventListener('click', function (e) {
  15.                     var str = textInput.value;
  16.  
  17.                     // проверки
  18.                 });
  19.             });
  20.         </script>
  21.     </head>
  22.     <body>
  23.        
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement