$(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
});
1条答案
按热度按时间j91ykkif1#
只需安装名为inappbrowser的插件,并添加一个类来锚标记,如
并确保你有jQuery库。把js文件中的代码粘贴在底部。