结合来自http://blog.digitalbackcountry.com/2012/03/installing-the-childbrowser-plugin-for-ios-with-phonegapcordova-1-5/的信息和他的链接帖子https://github.com/phonegap -starter/ChildBrowserPlugin似乎
ChildBrowswer.install();
步骤不再是必要的。我现在也在使用 jQueryMobile 1.1。用于在下面包含的 ChildBrowser 中启动 google 的示例函数。我按照第一个链接中的 .plist 设置进行操作。
function onLinkClick() {
window.plugins.childBrowser.onLocationChange = function(loc){ alert("In index.html new loc = " + loc); };
window.plugins.childBrowser.onClose = function(){alert("In index.html child browser closed");};
window.plugins.childBrowser.onOpenExternal = function(){alert("In index.html onOpenExternal");};
window.plugins.childBrowser.showWebPage('http://www.google.com',
{ showLocationBar: true });
console.log(window.plugins.childBrowser);
}
以及链接本身的完整性
<p><a href="#" onclick="onLinkClick()">Click here</a> to open a child browser window to Google</p>
希望这对其他人有所帮助,因为这个问题几天都没有得到解答。