点击IE8 / Chrome后打开mailto

时间:2010-03-23 13:30:55

标签: firefox internet-explorer-8 window mailto

我目前正在尝试执行以下操作:

触发:点击选择列表中的名称。

操作:在当前窗口中打开mailto-link,从而打开电子邮件客户端。

$(document).ready(function(){    

// Define click-event
$('option').click(function(){
    var mail = $(this).attr('value');
    window.open('mailto:'+mail, '_self');
    });

});

我也尝试过使用它而不是window.open:

parent.location.href= 'mailto:'+mail;

但是,两者都只能在firefox中使用,在IE8或Chrome中都没有错误/结果。

有人知道问题是什么吗?

1 个答案:

答案 0 :(得分:1)

这个怎么样(在IE8上适合我)

$('option').change(function() {
   var target = 'mailto:' + $('option:selected', this).text();
   window.location=target;
});

可能有更好的方法可以做到这一点,但我在其中一个页面上使用了类似的东西。

如果电子邮件地址可以存储为选择选项值,请在末尾使用.val()而不是.text()。