要忽略HTML验证,可以使用JavaScript删除单击按钮时的属性。
您removeAttribute()
必须从每个匹配的元素中删除一个属性。
<!DOCTYPE html> <html> <body> <form> First Name: <input type = "text" id = "fname" value = "Amit" required> <input type = "radio" onclick = "dislay('fname')"><br> </form> <script> function display(id) { document.getElementById(id).value = document.getElementById(id).removeAttribute('required'); } </script> </body> </html>