- 在页面的wxml文件中定义 placeholder-class="phcolor"
- 在页面的wxss文件中定义 phcolor对应的样式内容
page.wxml
<input class="weui-input" auto-focus placeholder="请输入假名,+空格表示结束" placeholder-class="phcolor" bindinput="bindinputjiaming" />
page.wxss
.phcolor{
color:#aaa;
font-size: 12px;
}