天天看點

相容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;