<input type="text" id="idFormi"> <button id="but">Кнопка</button> <script> document.getElementById('but').onclick=function(){ alert(document.getElementById('idFormi').value); }; </script>