小程序之 input框设置placeholder的style

<input placeholder='{{capitaltext}}' placeholder-style='color:rgb(207,207,207);font-size:26rpx;' type='number' maxlength='4'></input>

 

第二种办法(已测试)

wxml:

<view class="section">
    <input type='number' placeholder="电话" bindblur="phone" style='background-image: url({{background2}});' />
  </view>

wxss:

.input-placeholder{
  font-size: 16px;
}