菜鸟教程 tryjsref_fieldset_disabled3 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <form>
  	<fieldset id="myFieldset">
    	<legend>Personalia:</legend>
   		用户名: <input type="text"><br>
    	Email: <input type="text"><br>
    	出生日期: <input type="text">
  	</fieldset>
</form><br>
<button onclick="disableField()">禁用 fieldset</button>
<button onclick="undisableField()">取消禁用 fieldset</button>
<p><b>注意:</b>Internet Explorer 和 Safari 不支持 Fieldset 对象的 disabled 属性。</p>
<script>
function disableField(){
	document.getElementById("myFieldset").disabled=true;
}
function undisableField(){
	document.getElementById("myFieldset").disabled=false;
}
</script>