<!DOCTYPE html> <html> <head> </head> <body> <input id="pole" type="text" value="Значение!"/> <script> document.querySelector("#pole").onclick=function run() { alert(['Спасибо!', this.value]); } </script> </body>