以下时代吗
function showPic(whichpic){
var source = whichpic.getAttribute("href");
var place = document.getElementById("place");
place.setAttribute("src",source);
var text = whichpic.getAttribute("title");
var descripton = document.getElementById("descripton");
descripton.firstChild.nodeValue = text;
}
widow.onload = prepareGallery;
function prepareGallery(){
var gallery = document.getElementById("imagegallery");
var links = gallery.getElementsByTagName("a");
for (var i=0; i < links.length; i++) {
links[i].onclick = function (){
showPic(this);
return false;
}
}
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
请使用
Google Chrome DevTools报什么错啊?
window.onload
少了个n