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:"請輸入關鍵詞"
})
}
})