jQWidgets 是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、优化、独立于平台且得到广泛支持的框架。 jqxRadioButton 小部件表示一个 jQuery 单选按钮,用于在一组互斥且相关的选项中进行选择。该小部件用于从选项组中仅选择一个选项。
checked 属性用于设置或返回 jqxRadioButton 小部件是否已被选中。它接受 Boolean 类型值,默认值为 false。
用法:
-
设置选中的属性。
$('selector').jqxRadioButton({ checked: Boolean });
-
返回选中的属性。
var checked = $('selector').jqxRadioButton('checked');
链接文件:从给定链接 https://www.jqwidgets.com/download/下载 jQWidgets。在 HTML 文件中,找到下载文件夹中的脚本文件。
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxradiobutton.js”></script>
下面的示例说明了 jQWidgets jqxRadioButton 选中的属性。
例子:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<link rel="stylesheet"
href="jqwidgets/styles/jqx.base.css"
type="text/css" />
<script type="text/javascript"
src="scripts/jquery-1.11.1.min.js">
</script>
<script type="text/javascript"
src="jqwidgets/jqxcore.js">
</script>
<script type="text/javascript"
src="jqwidgets/jqx-all.js">
</script>
<script type="text/javascript"
src="jqwidgets/jqxradiobutton.js">
</script>
<style>
h1,
h3 {
text-align: center;
}
#GFG,
#GFG1 {
width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
jQWidgets jqxRadioButton checked Property
</h3>
<div id='GFG'>
Web Technology
</div>
<div id='GFG1'>
Data Structure
</div>
<script type="text/javascript">
$(document).ready(function() {
$("#GFG, #GFG1").jqxRadioButton({
width: 200,
height: 25,
checked: true
});
});
</script>
</body>
</html>
输出:
相关用法
- jQWidgets jqxRadioButton check()用法及代码示例
- jQWidgets jqxRadioButton boxSize属性用法及代码示例
- jQWidgets jqxRadioButton animationHideDelay属性用法及代码示例
- jQWidgets jqxRadioButton render()用法及代码示例
- jQWidgets jqxRadioButton focus()用法及代码示例
- jQWidgets jqxRadioButton hasThreeStates属性用法及代码示例
- jQWidgets jqxRadioButton groupName属性用法及代码示例
- jQWidgets jqxRadioButton uncheck()用法及代码示例
- jQWidgets jqxRadioButton animationShowDelay属性用法及代码示例
- jQWidgets jqxRadioButton height属性用法及代码示例
- jQWidgets jqxRadioButton theme属性用法及代码示例
- jQWidgets jqxRadioButton rtl属性用法及代码示例
- jQWidgets jqxRadioButton destroy()用法及代码示例
- jQWidgets jqxRadioButton enable()用法及代码示例
- jQWidgets jqxRadioButton enableContainerClick属性用法及代码示例
- jQWidgets jqxRadioButton val()用法及代码示例
- jQWidgets jqxRadioButton disable()用法及代码示例
- jQWidgets jqxRadioButton disabled属性用法及代码示例
- jQWidgets jqxRadioButtonGroup disabled属性用法及代码示例
- jQWidgets jqxRadioButtonGroup render()用法及代码示例
- jQWidgets jqxRadioButtonGroup rtl属性用法及代码示例
- jQWidgets jqxRadioButtonGroup enable()用法及代码示例
- jQWidgets jqxRadioButtonGroup val()用法及代码示例
- jQWidgets jqxRadioButtonGroup disable()用法及代码示例
- jQWidgets jqxRadioButtonGroup destroy()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 jQWidgets jqxRadioButton checked Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。