手机端点击input怎样才能不弹出键盘

1:<input disalbed/>,添加disabled,禁用输入框。

2:不使用input,使用其他非焦点获取的标签来代替,比如div。

3:通过js控制,<input onfocus=”this.blur();”/>。