请教这两段JS代码哪里不同

function showPic(whichpic){
if (!document.getElementById("placeholder")) return false;
var source=whichpic.getAttribute("href");
var placeholder=document.getElementById("placeholder");
if(placeholder.nodeName != "IMG") return false;
placeholder.setAttribute("src",source);
if(document.getElementById("description")){
var text=whichpic.getAttribute("title") ? whichpic.getAttribute("title") : "";
var description=document.ElementById("description");
if (description.firstChild.nodeType == 3){
description.firstChild.nodeValue=text;} return true; }

function prepareGallery() { 
  if (!document.getElementsByTagName) return false; 
  if (!document.getElementById) return false; 
  if (!document.getElementById("imagegallery")) return false; 
  var gallery = document.getElementById("imagegallery"); 
  var links = gallery.getElementsByTagName("a"); 
  for ( var i=0; i < links.length; i++) { 
    links[i].onclick = function() { 
      return showpic(this) ? false : true;
    } 
  } 
}
function addLoadEvent(func) { 
  var oldonload = window.onload; 
  if (typeof window.onload != 'function') { 
    window.onload = func; 
  } else { 
    window.onload = function() { 
      oldonload(); 
      func(); 
    } 
  } 
} 
addLoadEvent(prepareGallery); 
 下面是第二段
 下面是第二段
 下面是第二段
 function prepareGallery() { 
  if (!document.getElementsByTagName) return false; 
  if (!document.getElementById) return false; 
  if (!document.getElementById("imagegallery")) return false; 
  var gallery = document.getElementById("imagegallery"); 
  var links = gallery.getElementsByTagName("a"); 
  for ( var i=0; i < links.length; i++) { 
    links[i].onclick = function() { 
      return showPic(this) ? false : true; 
    } 
  } 
}
function showPic(whichpic) { 
  if (!document.getElementById("placeholder")) return false; 
  var source = whichpic.getAttribute("href"); 
  var placeholder = document.getElementById("placeholder"); 
  if (placeholder.nodeName != "IMG") return false; 
  placeholder.setAttribute("src",source); 
  if (document.getElementById("description")) { 
    var text = whichpic.getAttribute("title") ? whichpic.getAttribute("title") : ""; 
    var description = document.getElementById("description"); 
    if (description.firstChild.nodeType == 3) { 
      description.firstChild.nodeValue = text; 
    } 
  } 
  return true; 
}
function addLoadEvent(func) { 
  var oldonload = window.onload; 
  if (typeof window.onload != 'function') { 
    window.onload = func; 
  } else { 
    window.onload = function() { 
      oldonload(); 
      func(); 
    } 
  } 
} 
addLoadEvent(prepareGallery);


火光余见3658736
浏览 1406回答 1
1回答

有所希冀

不管是格式和语法,都是第二段的好!比较工具:beyond compare4
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript