uniapp webview web-view组件监听网页变化 url变化 与网页通讯
需求是在app页面内嵌套自己的h5 或者别人的h5 切换页面时候获取到网页的变化 url的变动
第一种方法就是使用 html5+的方法
//html部分
<web-view :src="webviewPath" class="webview" height="100%" :webview-styles="{width:'100%',height:'100%'}"
id="webview" ></web-view>
//js部分
<script>
export default {
onReady() {
// 获取当前Webview窗口对象
const ws = plus.webview.currentWebview();
var currentWebview = this.$scope.$getAppWebview()
setTimeout(() => {
let wv = currentWebview.children()[0];
_this.ws.loadURL(_this.webviewPath) //加载h5链接
// 监听窗口触屏事件
_this.ws.addEventListener('touchstart', function(e) {
setTimeout(() => {
let orderUrl = _this.ws.getURL() //页面链接
const wsTitle = _this.ws.getTitle() //页面标题
console.log(_this.ws.getTitle())
console.log(orderUrl)
console.log('touchstart');
}, 100)
}, false);
_this.ws.onloaded = () => {
let orderUrl = _this.ws.getURL()
console.log('onloaded事件加载完成', orderUrl)
};
},1000)//如果是页面初始化调用时,需要延时一下
}
}
</script>
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: