电子邮件地址链接在HTML / VBA中不起作用

时间:2019-11-15 14:06:38

标签: html vba

在我的VBA代码的HTML格式中,当我尝试链接电子邮件地址时出现错误。 VBA的取消代理在mailto处停止。

"<a href=www.google.com"">www.google.com</a>" & vbNewLine & _
"<a href="mailto:webmaster@example.com">Jon Doe</a>"

1 个答案:

答案 0 :(得分:0)

我认为这是您的引号将mailto视为变量而不是字符串try

mounted() {
const url = window.location.origin
const data = {
    username: 'username',
    password: '123
}
    axios.post(url+'/accounts/api/auth', data)
    .then(response => {
        console.log(response) 
    })
    .catch(error => {
        console.log(error)
    })
}