微信小程序input的placeholder的字体会上移或下移

时间:2019-12-28 13:06:56   收藏:0   阅读:378

placeholder文字在聚焦是为空,在失焦是显示为指定值

xml
 <input type="text" class="searchInpt" placeholder="{{searchValue}}}"  bindfocus="focusFn" bindblur="blurFn"/> 
 
js
Page({
 
  
data: {
    searchValue:"请输入关键词"
  },

  focusFn:function(e){
    this.setData({
      searchValue:""
    })
  },
  blurFn:function(e){
    this.setData({
      searchValue:"请输入关键词"
    })
  }
 
})
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!