如何将属性电子邮件字符串添加到href标记中?

时间:2014-11-13 16:56:27

标签: html css

我有一个attr

<img class="img_thumb" src="images/cropped9.jpg" author-email="huizhong@hotmail.com">

<a class="email" href="mailto:">huizhong@hotmail.com"</a>

我想制作一个可点击的电子邮件链接,我阅读并理解我必须要做的事情

<a href="mailto:huizhong@hotmail.com"></a>

但我的电子邮件是img属性,所以我想知道如何将它添加到href中?

由于

1 个答案:

答案 0 :(得分:0)

您可以使用img元素上的.getAttribute获取author-email属性并设置a元素的href属性:

Fiddle

var image = document.getElementsByClassName('img_thumb')[0];

var a = document.getElementsByClassName('email')[0];
a.href = "mailto:" + image.getAttribute('author-email');

console.log(a)