img 标签内如何在src中引用变量
Posted lovehansong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了img 标签内如何在src中引用变量相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script language="javascript">
var adres="https://offlintab.firefoxchina.cn/static/img/search/baidu_web.png";
function imgUrl() {
document.images.imgInit.src = adres;
}
</script>
</head>
<body>
<img id="imgInit" src="乱设置一个就行" onerror="imgUrl()" style="width:50px;height:25px;display:block;" />
</body>
</html>
以上是关于img 标签内如何在src中引用变量的主要内容,如果未能解决你的问题,请参考以下文章