<script> alert(typeof displayAbbreviations); //undefined var displayAbbreviations=function(){ //若是function displayAbbreviations() 上面则会弹出function var abbr=document.getElementsByTagName(‘abbr‘); var dl=document.createElement(‘dl‘); for(var i=0;i<abbr.length;i++){ var dt=document.createElement(‘dt‘); var dttxt=document.createTextNode(abbr[i].firstChild.nodeValue); dt.appendChild(dttxt); dl.appendChild(dt); var dd=document.createElement(‘dd‘); var ddtxt=document.createTextNode(abbr[i].getAttribute(‘title‘)); dd.appendChild(ddtxt); dl.appendChild(dd); } document.getElementsByTagName(‘body‘)[0].appendChild(dl); } </script>
【DOM编程艺术】显示"缩略语列表",布布扣,bubuko.com
原文:http://www.cnblogs.com/positive/p/3672801.html