我想使用最新版本的 Cordova 附带的应用内浏览器。但是,我无法弄清楚如何使用我的 Xcode 进行设置。
我已将示例代码添加到我的 html 文件中:
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
var ref = window.open('http://apache.org', '_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); });
}
但是我不确定当点击按钮时如何触发它:
<a href="#">Click Me</a>
有人知道如何正确设置吗?