function showPic(whichpic){
var source=whichpic.getAttribute("href");
var placeholder=document.getElementById("placeholder");
placeholder.setAttribute("src",source);
}
我想实现的一个效果是 单击第一个链接的文字 ,链接的图片是直接在<img />上显示的,而不是重新跳转一个页面显示。
可是一直实现不到,不知道哪里错了。是onload事件函数出错了吗 还是showPic函数写错了。。
html引用js是没有问题的。
echo_kinchao
紫焰123