如何在输入中添加复选框

时间:2019-02-26 02:21:44

标签: javascript angular html5

我需要在输入中添加复选框,并在滚动条中添加输入。

我尝试输入,但如何添加复选框。请对此提供帮助。

1 个答案:

答案 0 :(得分:1)

CSS ::

.text-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    }
    .btn {
    position: absolute;
    top: 10px;
    right: 10px;
    }

HTML:

<div class="col-md-12 text-container" style="margin: 7px;">
    <input type="password" id="reg_password" name="reg_password" style="height: 35px;" class="form-control input-lg" placeholder="Password" ng-model="register_password" />
    <span id="btn" class="btn"><input type="checkbox" id="eye" onclick="if(reg_password.type=='text')reg_password.type='password'; else reg_password.type='text';" /></span>
</div>

请检查Answer