<html> <body> <script language="javascript"> function EditAttribute() { // Lấy đối tượng var IdElement = document.getElementById("IdName"); // lấy thuộc tính type var type = IdElement.type; // kiểm tra thuộc tính type // nếu đang là button thì đổi thành text và ngược lại if (type == "button"){ IdElement.type = 'text'; // thay đổi value IdElement.value = 'type text'; } else{ IdElement.type = "button"; // thay đổi value IdElement.value = 'type Button'; } } </script> <input type="button" value="type Button" onclick="EditAttribute()" id="IdName" /> </body> </html>