jQuery Mobile形成了组合输入元素

时间:2014-02-21 12:19:03

标签: jquery-mobile jquery-mobile-fieldset

使用jQuery mobile时,是否可以将复选框或按钮与文本输入结合使用?类似于我下面的图片。

我想将它用作字段验证,以便在用户更新字段时变为红色或绿色。

enter image description here

1 个答案:

答案 0 :(得分:1)

jQuery Mobile不包含此功能,但您可以通过CSS执行此操作。

  

以下是 DEMO ,其中包含几个选项

第一个使用表,因此左键总是相同的大小,输入在窗口调整大小时增大/缩小。虽然第二个选项使用div和bothe按钮,但标签会缩小。

在表格中,css删除表格上的边框和间距,并将第一个td宽度设置为常量值。 css的其余部分使按钮和输入看起来正确:

<table id="specialContTbl">
  <tr>
    <td class="btntd">
      <button data-role="none" id="btn">B</button>
    </td>
    <td class="inptd">
      <input data-role="none" type="text" id="inp1" name="inp1" value="" placeholder="enter some text" />
    </td>
  </tr>
</table>

#specialContTbl {
    border-spacing: 0;
    border-collapse: collapsed;
}
#specialContTbl td {
    padding:0;
    margin: 0;
    border: 0;
    vertical-align: top;
}
#specialContTbl td:first-child{
    width: 60px;
}
#specialContTbl{
    width: 100%;
}
#specialContTbl button, #specialContTbl input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#specialContTbl button {
    font-weight: normal;
    background: #00f050;
    padding: 5px;
    color: #333;
    border: 1px solid #d4d4d4;
    border-right: 0;
    border-bottom-left-radius:1em;
    border-top-left-radius: 1em;    
    line-height: 28px;
    height: 38px;
    width: 100%;
    float: left;
    text-align: center;
    cursor: pointer;
    white-space:nowrap;
}
#specialContTbl input {
    width: 100%;
    height: 38px;
    padding: 8px;
    border: 1px solid #d4d4d4;
    border-bottom-right-radius: 1em;
    border-top-right-radius: 1em;
    line-height: 18px;
    float: right;
    box-shadow: inset 0px 2px 2px #ececec;
}
#specialContTbl input:focus {
    outline: 0;
}