使用easyui框架form控件,单选按钮radio或复选框checkbox样式问题

Posted 逍遥不羁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用easyui框架form控件,单选按钮radio或复选框checkbox样式问题相关的知识,希望对你有一定的参考价值。

easyui只提供了textbox文本框,未提供单选按钮radio或复选框checkbox控件,在使用过程中,会存在单选按钮radio或复选框checkbox与文本框textbox样式不统一的问题,要保证其样式的统一性,可以通过如下代码实现:

form表单html代码:
    <tr>
        <td style="text-align:right;">是否管理员:</td>
        <td style="text-align:left">
            <span class="radiospan">
                <input type="radio" name="adminFlag" value="0"></input>
                <input type="radio" name="adminFlag" value="1"></input>
            </span>
        </td>
    </tr>

通过css改变radioSpan的样式:

/*新增/修改用户时,是否管理员样式保持与easyui一致*/
    .radioSpan 
      position: relative;
      border: 1px solid #95B8E7;
      background-color: #fff;
      vertical-align: middle;
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      margin: 0;
      padding: 0;
      -moz-border-radius: 5px 5px 5px 5px;
      -webkit-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      display:block;
    

以上是关于使用easyui框架form控件,单选按钮radio或复选框checkbox样式问题的主要内容,如果未能解决你的问题,请参考以下文章

引导单选按钮文本组

form

多个单选按钮选择

求教一个easyui的问题 datagrid中怎么加复选框

RadioButton控件用法技巧

C#在新窗体显示选中的按钮