gpt4 book ai didi

html - 如果第一个在 HTML 上找不到,请备份 img

转载 作者:行者123 更新时间:2023-12-05 04:14:47 26 4
gpt4 key购买 nike

我想显示 img1.png。但是,如果查找文件时出错,我希望显示备份 missing.png。 HTML 中有没有一种方法可以包含 if 语句或异常?

<try>?
<img src="img1.png">
<except error 404>?
<img src="missing.png">

我在所有我不明白该怎么做的行上都打上了问号。

最佳答案

查看答案here

它说你可以按照下面的方式做

<img src="img1.png" alt="Image not found" onError="this.onerror=null;this.src='missing.png';" />

其中 onerror 是一个 Javascript 函数。请引用docs有关 onerror

的更多详细信息

关于html - 如果第一个在 HTML 上找不到,请备份 img,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34243007/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com