setAttribute问题,为什么点击链接不能在占位符的位置显示图片,而是转到另
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
你事件onclick都没有,哪里来的图片转换
Snapshot
1
2
3
4
</ul> functionpicgroup(){ varpicgroup=document.getElementById("picgroup"); varaLinks=picgroup.getElementsByTagName("a"); for(i=0;i |
|
|
|
|
需要阻止默认事件,下面是代码:
无标题文档functionshopPic(whichpic){event.preventDefault()varplaceholder=document.getElementById("placeholder");console.log(whichpic.getAttribute("href"))placeholder.setAttribute("src",whichpic.getAttribute("href"));}</script>Snapshot
</ul> |
|
|
|
|