我有一个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中?
由于
答案 0 :(得分:0)
您可以使用img
元素上的.getAttribute
获取author-email
属性并设置a
元素的href
属性:
var image = document.getElementsByClassName('img_thumb')[0];
var a = document.getElementsByClassName('email')[0];
a.href = "mailto:" + image.getAttribute('author-email');
console.log(a)