安科网
源代码:
点击运行
<!DOCTYPE html> <html> <body> 搜索: <input type="search" id="mySearch"><br><br> <button onclick="disableBtn()">禁用搜索字段</button> <button onclick="undisableBtn()">启用搜索字段</button> <script> function disableBtn() { document.getElementById("mySearch").disabled = true; } function undisableBtn() { document.getElementById("mySearch").disabled = false; } </script> </body> </html>
运行结果
Copyright © 2013 - 2019 Ancii.com All Rights Reserved
京ICP备18063983号-5
京公网安备11010802014868号