xml
<input id='searchInput' placeholder='{{phValue}}' type="text" bindfocus='onFocus' bindblur='onBlur'/>
js
Page({
// 頁面的初始數據
data: {
phValue:"請輸入要錄入的單詞"
},
onFocus: function (e) {
this.setData({
phValue:" "
})
},
onBlur: function (e) {
this.setData({
phValue: "請輸入要錄入的單詞"
})
}
})
