编辑下面的代码:
【加编码】
查看效果 »
<html> <head> <script> function setResult() { document.getElementById("email").readOnly=true; } </script> </head> <body> <form> Email: <input type="text" id="email"> </form> <button type="button" onclick="setResult()">设置只读</button> </body> </html>
结果:
【此窗口】
帮助?