JavaScript 加载网页后加载图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 加载网页后加载图像相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script type="text/javascript">
<!--
function getImage(pExistingImageID, pImageURL){
var img = document.createElement('img');
img.onload = function (evt) {
document.getElementById(pExistingImageID).src=this.src;
document.getElementById(pExistingImageID).width=this.width;
document.getElementById(pExistingImageID).height=this.height;
}
img.src = pImageURL;
return false;
}
//-->
</script>
<title>Remote Image 5</title>
</head>
<body>
<p><a href="#" onclick="return getImage('placeHolder','/images/rdivilbiss.jpg');">Get Remote Image</a></p>
<p><img id="placeHolder" border="0" src="/images/placeHolder.jpg"></p>
</body>
</html>
以上是关于JavaScript 加载网页后加载图像的主要内容,如果未能解决你的问题,请参考以下文章
静态页面加载后加载 Rails
UITableViewCell重用后加载不正确的图像
仅在切换选项卡后加载内容。 Javascript 引导程序
加载 angularjs 视图后加载 jquery 模块?
iOS 14 上的 WKWebView 仅在显着延迟后加载内容
在 ajax 调用后加载视图,CodeIgniter