<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.getAttribute('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.setAttribute('type','text'); // thay đổi value IdElement.value = 'type text'; } else{ IdElement.setAttribute('type','button'); // thay đổi value IdElement.value = 'type Button'; } } </script> <input type="button" value="type Button" onclick="EditAttribute()" id="IdName" /> </body> </html>