之前有位大佬给出的回答,但是经过实践需要在onReady里,才能在H5页面生效,onLoad里是不行的!!!
onReady() {
// #ifdef APP-PLUS
var webView = this.$mp.page.$getAppWebview();
// console.log(webView.setTitleNViewSearchInputText)
webView.setTitleNViewSearchInputText(this.keyword)
// #endif
// #ifdef H5
var searchInputDom = document.querySelector(".uni-input-input[type=search]");
var evt = new UIEvent('input', {
bubbles: false,
cancelable: false
});
searchInputDom.value = this.keyword;
searchInputDom.dispatchEvent(evt);
// #endif
}
1 个评论
要回复文章请先登录或注册
不要找借口