webbrowser windows phone + tel和mailto标签不起作用

时间:2013-02-20 10:18:16

标签: windows-phone-7 xaml webbrowser-control windows-phone-8

我正在使用webbrowder呈现html字符串。

private void webBrowserHTML_Loaded(object sender, RoutedEventArgs e)
        {
            WebBrowser web = sender as WebBrowser;
            string description = web.DataContext.ToString();
            web.NavigateToString(description);
        }

在这个html中,我有标签tel和mailto:

<a href="mailto:xxxx@xx.xx"> Envoyer un email </a> 
<a href="tel:+33102030405"> Appeler la société xxx </a>

我的问题,当我点击号码,我不打电话,当我clik邮件不打开我的前景!!

有任何解决方案吗?

3 个答案:

答案 0 :(得分:1)

不幸的是,Windows Phone上的mailto:控件不支持tel:WebBrowser

您可以做的是在HTML中注入Javascript,它将枚举所有a代码并汇总onclick个事件。该事件将调用window.external.Notify,而ScriptNotify将提升WebBrowser的{​​{1}}事件,并将URL作为参数。

这有点复杂,但我认为这是在Windows Phone上处理这些mailto和tel协议的唯一选择。

以下是代码:

    // Constructor
    public MainPage()
    {
        InitializeComponent();

        browser.IsScriptEnabled = true;
        browser.ScriptNotify += browser_ScriptNotify;
        browser.Loaded += browser_Loaded;
    }

    void browser_Loaded(object sender, RoutedEventArgs e)
    {
        // Sample HTML code
        string html = @"<html><head></head><body><a href='mailto:test@test.com'>Envoyer un email</a><a href='tel:+3301010101'>Appeler</a></body></html>";

        // Script that will call raise the ScriptNotify via window.external.Notify
        string notifyJS = @"<script type='text/javascript' language='javascript'>
                                window.onload = function() {
                                    var links = document.getElementsByTagName('a');
                                    for(var i=0;i<links.length;i++) {
                                        links[i].onclick = function() {
                                            window.external.Notify(this.href);
                                        }
                                    }
                                }
                            </script>";

        // Inject the Javascript into the head section of the HTML document
        html = html.Replace("<head>", string.Format("<head>{0}{1}", Environment.NewLine, notifyJS));

        browser.NavigateToString(html);
    }

    void browser_ScriptNotify(object sender, NotifyEventArgs e)
    {
        if (!string.IsNullOrEmpty(e.Value))
        {
            string href = e.Value.ToLower();
            if (href.StartsWith("mailto:"))
            {
                EmailComposeTask email =  new EmailComposeTask();
                email.To = href.Replace("mailto:", string.Empty);
                email.Show();
            }
            else if (href.StartsWith("tel:"))
            {
                PhoneCallTask call = new PhoneCallTask();
                call.PhoneNumber = href.Replace("tel:", string.Empty);
                call.Show();
            }
        }
    }

答案 1 :(得分:1)

<onclick="window.location.href = 'tel:1231231234';">

而不是

<a href="tel:+33102030405">

由于

答案 2 :(得分:0)

很好的修复,上述解决方案效果更好,