在 AppBrowser 中更改 url 的 cordova
Change url of cordova inAppBrowser
我想在用户单击通知时以编程方式更改 AppBrowser url 中的 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!");
});
}
我想在用户单击通知时以编程方式更改 AppBrowser url 中的 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!");
});
}