兼容ie和firefox的获取html元素自定义属性的方法

    有时候在html中自定义属性能够方便我们,比如<span id='span1' time='2008-8-8'>hello</span>,通常在ie中获取time的办法是:document.getElementById('span1').time就行,但是这个方法在firefox下不管用,兼容的做法是这样的:
document.getElementById('span1').attributes['time'].nodeValue;
原文地址:https://www.cnblogs.com/vagerent/p/1186223.html