jQuery 用戶接口是一組精心設計的用戶接口交互、效果、小部件和主題,構建在jQueryJavaScript Library 。無論您是要構建高度交互的 Web 應用程序,還是隻需要向表單控件添加日期選擇器,jQuery UI 都是完美的選擇。
在本文中,我們將使用 jQuery Mobile Checkboxradio refresh() 方法。此方法用於刷新 Checkboxradio 按鈕小部件。該方法不接受任何參數
用法:
$(".selector").checkboxradio("refresh");
CDN 鏈接:首先,在項目所需的 head 部分中添加 jQuery UI CDN 鏈接。
<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery-1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
例子:在這個例子中,我們將說明如何使用 jQuery UI Checkboxradiorefresh()方法。
HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src=
"//code.jquery.com/jquery-1.12.4.js">
</script>
<script src=
"//code.jquery.com/ui/1.12.1/jquery-ui.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQuery UI Checkboxradio refresh() Method</h3>
<label for="radio1">Button 1</label>
<input type="radio" name="radio"
id="radio1" class='radio'>
<br>
<label for="radio2">Button 2</label>
<input type="radio" name="radio"
id="radio2" class='radio'>
<br>
<label for="radio3">Button 3</label>
<input type="radio" name="radio"
id="radio3" class='radio'>
<br><br>
<input type="button" id="btn"
value="Refresh CheckboxRadio"
style="padding: 8px">
<script>
$(document).ready(function () {
$(".radio").checkboxradio();
$("#btn").on('click', function() {
if($(".radio").checkboxradio("refresh"))
alert("Refresh the checkboxradio widget");
})
});
</script>
</center>
</body>
</html>
輸出:
參考: https://api.jqueryui.com/checkboxradio/#method-refresh
相關用法
- jQuery UI Checkboxradio classes用法及代碼示例
- jQuery UI Checkboxradio disabled用法及代碼示例
- jQuery UI Checkboxradio icon用法及代碼示例
- jQuery UI Checkboxradio label用法及代碼示例
- jQuery UI Checkboxradio destroy()用法及代碼示例
- jQuery UI Checkboxradio disable()用法及代碼示例
- jQuery UI Checkboxradio widget()用法及代碼示例
- jQuery UI Checkboxradio enable()用法及代碼示例
- jQuery UI Controlgroup classes用法及代碼示例
- jQuery UI Controlgroup direction用法及代碼示例
- jQuery UI Controlgroup create用法及代碼示例
- jQuery UI Controlgroup destroy()用法及代碼示例
- jQuery UI Controlgroup disable()用法及代碼示例
- jQuery UI Controlgroup disabled用法及代碼示例
- jQuery UI Controlgroup enable()用法及代碼示例
- jQuery UI Controlgroup option()用法及代碼示例
- jQuery UI Tabs option()用法及代碼示例
- jQuery UI Tabs collapsible用法及代碼示例
- jQuery UI Tooltips track用法及代碼示例
- jQuery UI Tooltips disabled用法及代碼示例
- jQuery UI Tooltips destroy()用法及代碼示例
- jQuery UI Tooltips disable()用法及代碼示例
- jQuery UI Tooltips enable()用法及代碼示例
- jQuery UI Tooltips close()用法及代碼示例
- jQuery UI Tooltips open()用法及代碼示例
注:本文由純淨天空篩選整理自blalverma92大神的英文原創作品 jQuery UI Checkboxradio refresh() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。