效果展示:
效果图
源码:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text" placeholder="你最喜欢的明星或名人"><button>封掉</button><button>解封</button>
<script>
document.getElementsByTagName("button")[0].onclick=function(){
document.querySelector("input").disabled="disabled"
}
document.getElementsByTagName("button")[1].onclick=function(){
document.querySelector("input").disabled=false;
}
</script>
</body>
</html>