如何在输入中添加复选框

问题描述 投票:1回答:1

我需要在输入和滚动条中添加复选框以进行输入。

我已经尝试过输入,但是如何添加复选框。请帮我解决这个问题。

javascript angular html5
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.