gpt4 book ai didi

html - 如何在sencha touch中实现email,call功能

转载 作者:搜寻专家 更新时间:2023-10-31 22:33:08 24 4
gpt4 key购买 nike

我有一个示例 sencha touch 应用程序试图实现电子邮件、调用和 SMS 功能,但是当运行该应用程序时它没有打开电子邮件窗口或调用窗口。请问我可以知道使其工作的正确语法吗?

示例代码:

Ext.define('Sample.view.ContactsView', {
extend:'Ext.Panel',
requires:[
'Ext.form.FieldSet',
'Ext.field.Text'
],

alias:"widget.contactpage",
initialize:function () {
this.callParent(arguments);
},

config:{
items:[
{
xtype:'titlebar',
title:'Contact Us'
},
{
xtype:'panel',
layout:'hbox',

items:[
{
xtype:'button',
flex:1,
id:'smsButton',
handler:function(){
document.location.href = 'sms:464646'
}
},
{
xtype:'spacer'
},
{
xtype:'button',
text: 'Phone',
id:'callMeButton',
flex:1,
handler:function(){
document.location.href = 'tel:+1-800-555-1234'
}
}
]
},
{
xtype:'button',
text:'Email',
id: 'emailButton',
handler:function(){
document.location.href = 'mailto:webmaster@example.com'
}
}
]
},
});

最佳答案

使用 window.open() 方法。

window.open('tel:+1-800-555-1234');
window.open('mailto:webmaster@example.com');

关于html - 如何在sencha touch中实现email,call功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10814134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com