兼容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;
posted on 2008-05-07 09:19  上午的绝缘杯  阅读(2896)  评论(3编辑  收藏  举报