首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Bootstrap框架----新建示例--各种input 更新

Bootstrap框架----新建示例--各种input 更新

<div class="form-group">
                    <label for="icon" class="col-sm-2 control-label">前台隐藏</label>
                    <div class="col-sm-10">
                        <label class="radio-inline">
                            <input type="checkbox" id="hidden" name="hidden" ${basicEntity.hidden?'checked':''}>
                        </label>
                    </div>
                </div>
                <div class="form-group">
                    <label for="icon" class="col-sm-2 control-label">算法类型</label>
                    <div class="col-sm-10">
                        <label class="radio-inline">
                            <input type="radio" name="algorithmType" id="algorithmType"
                                   value="1"  ${basicEntity.algorithmType==1?'checked':''}   />
                            特征型
                        </label>
                        <label class="radio-inline">
                            <input type="radio" name="algorithmType" id="algorithmType"
                                   value="2"  ${basicEntity.algorithmType==2?'checked':''}/>
                            风险型
                        </label>
                    </div>
                </div>
                <div class="form-group">
                    <div class="col-sm-6 col-sm-offset-2">
                        <button type="button" class="btn btn-default cancel"
                                data-dismiss="modal">取消
                        </button>
                        <button type="button" class="btn btn-primary save"
                                data-loading-text="Saving...">确认
                        </button>
                    </div>
                </div>
            </form>
        </div>
        <!-- /. ROW  -->   
               
               
               
               
            </div>  
            <!-- /. PAGE INNER  -->  
        </div>  
        <!-- /. PAGE WRAPPER  -->              
                 
<%@ include file="./include/footer.jsp"%>  
<script type="text/javascript">  
  
</script>  
  
  
</body>  
  
</html>
返回列表