<html> <body> <script language="javascript"> function HideAlert() { // lấy id của thẻ có id="IdAlert" var IdAlert = document.getElementById('IdAlert'); setTimeout(function(){ IdAlert.innerHTML = ""; },2000); } function TinhTong() { // lấy Id thẻ <p> var IdAlert = document.getElementById('IdAlert'); // lấy giá trị textbox var ketqua = document.getElementById('Tong').value; if(ketqua == 2){ // gán text cho thẻ <p> IdAlert.innerHTML = "Bạn trả lời đúng !"; // thay màu cho thẻ <p> IdAlert.style.color = "blue"; } else { // gán text cho thẻ <p> IdAlert.innerHTML = "Bạn trả lời sai !"; // thay màu cho thẻ <p> IdAlert.style.color = "red"; } // gọi hàm xóa text sau 2s HideAlert(); } </script> 1 + 1 = <input type="text" value="" id="Tong" /> <br/> <p id="IdAlert" ></p> <input type="button" value="Trả lời" onclick="TinhTong()" /> </body> </html>