消防电话Sencha Touch 中按钮的链接

发布于 2024-10-30 17:06:14 字数 217 浏览 2 评论 0原文

我有一个 ActionSheet,当用户点击列表项时会显示该操作表。 ActionSheet 中有三个按钮 - 一个用于删除联系人,一个用于拨打电话,一个用于关闭 ActionSheet。我的问题是,如何将 的等效项绑定到按钮?

我需要指定“tel:”协议,以便 iOS 和 Android 强制电话应用程序加载此号码?

I have an ActionSheet which is shown when a user taps on a list item. In the ActionSheet are three buttons - one to remove the contact, one to make a call to them and one to dismiss the ActionSheet. My question is, how do I bind the equivalent of a <a href="tel:000000000"></a> to the button?

I need to specify the 'tel:' protocol so that iOS and Android will force the Phone application to load with this number?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

简单 2024-11-06 17:06:14

这非常简单,

您所要做的就是更改按钮处理程序中文档的位置(窗口元素):

        var tapHandler = function(button, event){
            Ext.Msg.confirm('External Link', 'Call ' + button.contactName + "?", function(res){
                if (res == 'yes') {
                    window.location = button.callUrl;
                }
            }, this);

        };


        var callButton = new Ext.Button({
            text: 'Call Now',
            callUrl: 'tel:995223423',
            contactName: 'Ben M',
            handler: tapHandler
        });

It's pretty simple,

All you have to do is change the document's location (window element) in the button's handler:

        var tapHandler = function(button, event){
            Ext.Msg.confirm('External Link', 'Call ' + button.contactName + "?", function(res){
                if (res == 'yes') {
                    window.location = button.callUrl;
                }
            }, this);

        };


        var callButton = new Ext.Button({
            text: 'Call Now',
            callUrl: 'tel:995223423',
            contactName: 'Ben M',
            handler: tapHandler
        });
从﹋此江山别 2024-11-06 17:06:14

尚未尝试过此操作,但如果 R​​ubinsh 的方法不起作用,请尝试在按钮的单击处理程序中以编程方式创建它。

function(){
   var alink = Ext.getBody().createChild({tag: 'a', href: 'tel:#########'});
   var event = document.createEvent("TouchEvent");
   event.initTouchEvent('tap', true, true, window, 0, 0, 0, 0);
   alink.dispatchEvent(event);
}

参考

Haven't tried this, but if Rubinsh's method doesn't work try creating it programmatically in the button's click handler.

function(){
   var alink = Ext.getBody().createChild({tag: 'a', href: 'tel:#########'});
   var event = document.createEvent("TouchEvent");
   event.initTouchEvent('tap', true, true, window, 0, 0, 0, 0);
   alink.dispatchEvent(event);
}

References

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文