Mui- check boxes, radio buttons

<!DOCTYPE html>
<html>

    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <title></title>
        <script src="js/mui.min.js"></script>
        <link href="css/mui.min.css" rel="stylesheet" />
        <script type="text/javascript" charset="utf-8">
            mui.init();
        </script>

    </head>

    <body>
        <header class="mui-bar mui-bar-nav">
            <!--顶部导航栏-带返回键-->
            <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
            <h1 class="mui-title">测试属性checkbox</h1>
        </header>
        <div class= "MUI-Content" > 
            < div class = "MUI-INPUT-MUI-CheckBox Row" > 
                < label > chicken </ label > 
                < INPUT name = "CheckBox1" value = "chicken" type = "CheckBox" > 
            </ div > 
            < div class = "MUI-INPUT-Row-checkBox MUI MUI-left" > <-! MUI-box on the left represents the left -> 
                < label > king </ label > 
                <input name="checkbox1" value= "King" type = "CheckBox" > 
            </ div > 
            < div class = "MUI-INPUT-Row MUI MUI-Radio-left" > <-! MUI-checkbox Radio -> 
                < label > move bricks </ label > 
                < the INPUT name = "CheckBox1" value = "moving bricks" of the type = "Radio" > <-! Note single marquee name must be identical, it represents is an option within a group -> 
            </ div > 
        </ div > 
        < Script of the type = "text/javascript">
        </script>
    </body>

</html>

Guess you like

Origin www.cnblogs.com/fdxjava/p/11071985.html