<html><body><button onclick="document.getElementById('myImage').src='hagthrowingball.gif'">Throw Fire ball</button><img id="myImage" src="foresthag.gif" style="width:100px"></body></html>我需要图像 src onclick 来显示图像 hagthroingball.gif,但然后返回 forforethag.gif,而无需再次按按钮。
1 回答
元芳怎么了
TA贡献1798条经验 获得超7个赞
我认为这应该可以通过在一段时间后自动设置旧的 src 来解决您的问题;
<button onclick="replaceFunc();">Throw Fire ball</button>
<img id="myImage" src="foresthag.gif" style="width:100px">
<script>
function replaceFunc (){
const el = document.getElementById("myImage");
const oldSrc = el.src;
el.src = 'hagthrowingball.gif';
setTimeout(()=>el.src=oldSrc, 1000);
}
</script>
</body>
</html>
- 1 回答
- 0 关注
- 94 浏览
添加回答
举报
0/150
提交
取消