gpt4 book ai didi

javascript - InAppBrowser event.url 始终未定义

转载 作者:行者123 更新时间:2023-11-30 12:52:45 26 4
gpt4 key购买 nike

你知道为什么 event.url 总是未定义吗?这适用于 loadstartloadstop

Google 页面在弹出窗口中显示正常。

var ref = window.open('http://google.com', '_blank', 'location=yes');
ref.addEventListener('loadstart', function() { alert('start: ' + event.url); });
ref.addEventListener('loadstop', function() { alert('stop: ' + event.url); });
ref.addEventListener('exit', function() { alert(event.type); });

最佳答案

var ref = window.open('http://google.com', '_blank', 'location=yes');
ref.addEventListener('loadstart', function(event) { alert('start: ' + event.url); });
ref.addEventListener('loadstop', function(event) { alert('stop: ' + event.url); });
ref.addEventListener('exit', function(event) { alert(event.type); });

回调函数在事件触发时被调用。该函数传递了一个 InAppBrowserEvent 对象。

关于javascript - InAppBrowser event.url 始终未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20369519/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com