input点击怎么不弹出键盘

input点击怎么不弹出键盘?只跳转页面


<view class="suo">
                                <!-- <input class="homtInput" placeholder="搜你想要的..." /> -->
                                <input class="homtInput" v-model="search.searchKeyword" @click="searchFor()"
                                    placeholder="搜你想要的..." />
                                <image class="suo-img"
                                    src="https://socialize.oss-cn-shenzhen.aliyuncs.com/img/tab/ss.png"
                                    @click="searchImage()"></image>
                            </view>

searchFor() {
                uni.navigateTo({
                    url: '/pages/home/search'
                })
            },

两种方案
1.设置readonly
2.换成div

在你的 search 页面中 的input 写上属性 autofocus


<input type="text" autofocus="autofocus" />

你给input 添加了事件, 不跳转才怪了嘞,

你的click事件有跳转,所有可能看不到弹出就跳过去了