我是新手,想要使用带有cordova 6.2.0的Intel xdk构建混合应用程序。由于某些原因,我无法拨打mailto:
或<a href="tel:xxxxxxx">0000000</a>
等外部应用程序,我的设置如下
Screenshot of the intent settings
请帮忙。
编辑:每当我点击customer
时,它只会在我再次加载整个项目时提示一次但在后来的尝试中没有响应。
答案 0 :(得分:0)
对于使用外部意图,您必须在html页面中编写如下的javascript代码:
<script type="text/javascript">
$( document ).ready(function(){
$("#page_content a").click(function(e){
e.preventDefault();
window.open($(e.currentTarget).attr('href'), '_system', 'location=yes');
});
});
</script>