https://developers.weixin.qq.com/miniprogram/dev/component/input.html
光标一直在中间,“如”字的中间
<input class="input" cursor="{{0}}" placeholder="专业名称:如国际贸易" />
<input class="input" cursor="{{1}}" placeholder="专业名称:如国际贸易" />
文档里也说了, cursornumber是指定focus时的光标位置。
这么用不对吗? 光标一直在中间,很奇怪,我想让它在最前面,不生效,这么写。

cursor只对value生效,对placeholder无效,居中是因为你给input 设置了文本居中吧,你直接给input绑定value就到最前面了,不用设置cursor
cursor是在input有设置value且在真机的情况下才会有效