ios web输入框已有内容,再次点击输入框内容后空白,光标回到了最前面

发布于 2022-09-06 08:31:53 字数 1469 浏览 11 评论 0

输入框为absolute定位
html

<form action="#" class="cell_1">
                <input class="fundSearch" type="search" placeholder="请输入支行名字和关键字"/>
                <span class="delete"><img src="../../src/images/search/delete@3x.png" alt=""></span>
</form>

scss

    form{
        position: relative;
        .fundSearch{
            -webkit-appearance: none;
            outline: none;
            line-height: normal;
            @include px2rem(padding, 19 70 13 64);
            @include px2rem(font-size, 28);
            width: -webkit-fill-available;
            @include px2rem(border-radius,8);
            border: 1px solid rgba(229,229,229,0.8);
            background: url("../images/search/search@3x.png") no-repeat;
            @include px2rem(background-position, 20 18);
            @include px2rem(background-size, 31 30);
            background-color: rgba(244,244,244,0.8);
        }
        .delete{
            position: absolute;
            @include wh(64,64);
            @include px2rem(padding, 22 0 0 17);
            top:0;
            right:0;
            
            img{
                @include wh(28,28); 
            }     
    }     
    }

图片描述

IOS输入一段内容后,点击一下输入框内容后的空白区域,光标突然就跳到内容的最前面了,这个应该怎么解决?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文