我现在要显示一个图片,同时这个图片中能够加载其他地址
如:显示图片A的过程中,同时加载了B的地址。
我现在要显示一个图片,同时这个图片中能够加载其他地址
如:显示图片A的过程中,同时加载了B的地址。
有点 多线程 的意思,是吗?
如果是的话,就要用到小日本写的一个Concurrent.Thread.js
下载地址:
http://jsthread.sourceforge.net/cgi-bin/wiki/wiki.cgi?page=API_Specification
<img id="img1">
<script src="Concurrent.Thread.js"></script>
<script>
Concurrent.Thread.create(function(){img1.src='img/aa.jpg'});
var req = Concurrent.Thread.Http.get(' http://wenweb.soso.com', ["Accept", "*"]);
if (req.status == 200) {
alert(req.responseText);
} else {
alert(req.statusText);
}
</script>
html里只有请求与被请求的对象,所以显示图片和加载B的地址是二个请求动作,显示图片就不说了,加载B的地址,不太了解你的意思,
加载B网页中的内容,可以使用iframe嵌套。