gpt4 book ai didi

cordova - 在AppBrowser中更改cordova的url

转载 作者:行者123 更新时间:2023-12-02 14:20:05 24 4
gpt4 key购买 nike

当用户单击通知时,我想以编程方式更改 AppBrowser 中的 cordova 网址。我已经搜索过但一无所获。我已经尝试过:

var theurl,newurl,ref;

theurl = 'http://example1.com';
newurl = 'http://example2.com';
function a(){
ref = window.open(theurl, '_blank', 'location=no,hidden=yes,toolbar=no,EnableViewPortScale=yes,zoom=no');
}
function b(){
ref.location.href = newurl;
}

我也尝试过这个:

function b(){
ref.url = newurl;
}

但是好像不行,有代码吗?

最佳答案

终于找到解决办法了。我正在使用executeScript 方法通过javascript 更改url。这就是我所做的:

function b(){
ref.executeScript({
code: "window.location = '"+newurl+"';"
}, function() {
//alert("Redirected!");
});
}

关于cordova - 在AppBrowser中更改cordova的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31913621/

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