更新:下面的方法现在有效。
创建项目:
cordova create hello com.example.hello HelloWorld
cd hello
cordova platform add android
cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git
cordova build
然后从 Ecipe(Android 开发者工具)中的现有源创建一个新项目。
只需添加文档中的示例代码。
HTML:
<a onclick="testIAB();" style="display: block; width: 200px; height: 200px; background-color: yellow;">Test IAB</a>
JS:
function testIAB() {
var ref = window.open('http://apache.org', '_blank', 'location=yes');
}