<html> <head> </head> <body> <input type="text" id="message" value=""/> <p id="show"></p> <script> // lấy id của textbox var TextId = document.getElementById('message'); // gán sự kiện onkeyup cho textbox TextId.onkeyup = ChangeValue; // hàm sử lý sự kiện onkeyup function ChangeValue(){ // lấy thẻ có id="show" var display = document.getElementById('show'); // gán giá trị của textbox cho thẻ p display.innerHTML = TextId.value; } </script> </body> </html>