kero
Version:
62 lines • 2.89 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="http://design.yyuap.com/static/uui/latest/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="http://design.yyuap.com/static/uui/latest/css/tree.css">
<link rel="stylesheet" type="text/css" href="http://design.yyuap.com/static/uui/latest/css/grid.css">
<link rel="stylesheet" type="text/css" href="http://design.yyuap.com/static/uui/latest/css/u.css">
<link rel="stylesheet" type="text/css" href="http://design.yyuap.com/static/uui/latest/css/u-extend.css">
<link rel="stylesheet" type="text/css" href="widget.css">
</head>
<body>
<div class="u-container-fluid u-widget-bg">
<div class="u-row">
<div class="u-col-md-12">
<div class="u-widget u-widget-right">
<div class="u-widget-heading">
<h3 class="u-widget-title">单选框</h3>
</div>
<div class="u-widget-body">
<!--单选框代码 -->
<label class="u-radio m-r-sm">
<input type="radio" class="u-radio-button" name="options" value="1" checked>
<span class="u-radio-label">First</span>
</label>
<label class="u-radio m-r-sm">
<input type="radio" class="u-radio-button" name="options" value="2">
<span class="u-radio-label">Second</span>
</label>
</div>
</div>
</div>
</div>
<div class="u-row">
<div class="u-col-md-12">
<div class="u-widget u-widget-right">
<div class="u-widget-heading">
<h3 class="u-widget-title">不可用单选框</h3>
</div>
<div class="u-widget-body">
<!--不可用单选框代码 -->
<label class="u-radio" for="option-3">
<input type="radio" disabled checked id="option-3" class="u-radio-button" name="options1" value="3">
<span class="u-radio-label">Second</span>
</label>
</div>
</div>
</div>
</div>
</div>
<script src="http://design.yyuap.com/static/jquery/jquery-1.9.1.min.js"></script>
<script src="http://design.yyuap.com/static/knockout/knockout-3.2.0.debug.js"></script>
<script src="http://design.yyuap.com/static/uui/latest/js/u-polyfill.js"></script>
<script src="http://design.yyuap.com/static/uui/latest/js/u.js"></script>
<script src="http://design.yyuap.com/static/uui/latest/js/u-tree.js"></script>
<script src="http://design.yyuap.com/static/uui/latest/js/u-grid.js"></script>
<script src="http://design.yyuap.com/static/requirejs/require.debug.js"></script>
<script src="widget.js"></script>
</body>
</html>