如何使用Cordova获取外部url元素?

snz8szmq  于 2022-11-15  发布在  其他
关注(0)|答案(1)|浏览(129)

我已经完成了应用程序使用 cordova 网页视图,但问题是如何获得外部url元素使用 cordova 应用程序?
所以,请给予我一个解决方案

j91ykkif

j91ykkif1#

只需安装名为inappbrowser的插件,并添加一个类来锚标记,如

<a href="google.com" class="external-link">External Link</a>

并确保你有jQuery库。把js文件中的代码粘贴在底部。

$(document).on('click','.external-link',function(e){
   e.preventDefault();
   e.stopImmediatePropogation();
   var extLink = $(this).prop('href'); //get link of clicked anchor tag
   cordova.InAppBrowser.open(extLink , '_blank', 'location=yes'); //open it externally
});

相关问题