Hãy tạo một textbox, yêu cầu: Khi textbox thay đổi nội dung thì nội dung trong textbox được chuyển từ chữ thường thành chữ hoa. Gợi ý: dùng sự kiện onChange() và phương thức toUpperCase() HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script language="javascript"> function viethoa(f1) { f1.t2.value=f1.t1.value.toUpperCase(); }; </script> <form name="f1"> <label>input 1: <input type="text" name="t1" value="nguyen" onchange="viethoa(f1)"/> </label> <p> <label>input 2: <input type="text" name="t2" /> </label> </p> </form> </body> </html>