微信小程序input搜索框,placeholder的位置和光标的位置

时间:2025-01-17 17:15:41

如图:
在这里插入图片描述
在这里插入图片描述
光标的位置直接在input下设置

input{
    width: 100%;
    height: 60rpx;
    background-color: white;
    font-size: 24rpx;
    text-align: center;//光标居中
}

“搜索“两字的位置有两种方式:
-class

//wxml
<input type="text" name="search" value='' confirm-type="search"  placeholder-class="center" placeholder="搜索"/>

//wxss
.center{
    color: #aeaeae;
    text-align: center;
}


-style

//wxml
<input type="text" name="search" value='' confirm-type="search"  placeholder-style="text-align: center;color: #aeaeae;" placeholder="搜索"/>