📅  最后修改于: 2023-12-03 15:32:09.881000             🧑  作者: Mango
destroy()
方法用于销毁已经应用了 checkboxradio
功能的元素,并恢复元素原来的状态。
$( ".selector" ).checkboxradio( "destroy" );
该方法没有参数。
该方法没有返回值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery UI Checkboxradio destroy() 方法示例</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="//code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<style>
fieldset {
margin-bottom: 20px;
}
label {
display: inline-block;
margin-right: 10px;
margin-bottom: 5px;
font-weight: bold;
}
</style>
<script>
$( function() {
$( "#radio" ).checkboxradio();
$( "button" ).on( "click", function() {
$( "#radio" ).checkboxradio( "destroy" );
});
});
</script>
</head>
<body>
<fieldset>
<legend>Checkbox</legend>
<label for="radio">Option 1</label>
<input type="checkbox" name="radio" id="radio">
</fieldset>
<button>Destroy checkboxradio</button>
</body>
</html>
以上代码将会在页面上显示一个单选框,单选框旁边有一个“Option 1”的标签。单击页面上的“Destroy checkboxradio”按钮将会销毁已经应用了 checkboxradio
功能的单选框,并恢复单选框原来的状态。