抱歉这个菜鸟问题,但我想在网页上加载一个 gif 并使用
如下所示的 HTTP 链接非常完美。
但是当我用路径替换它时它不起作用
gif在网页的同一文件夹中
我确实尝试过:
- /thegifname.gif
- ./thegifname.gif
- //thegifname.gif
- gif名称.gif
但是这些都不起作用,在ie中使用调试器,在代码和本地路径中使用断点
./thegifname.gif 它有效!但没有调试工具我看不到 gif。
<script language="javascript" type="text/javascript">
var size = 0;
var id= 0;
function add_gif() {
document.getElementById("Label1").style.display = "none";
show_image("http://i789.photobucket.com/albums/yy180/Lendisson/progress_bar.gif", 300,15, "Running");
}
function show_image(src, width, height, alt) {
var img = document.createElement("img");
img.src = src;
img.width = width;
img.height = height;
img.alt = alt;
document.getElementById("divUpload").style.display="inline";
var div = document.getElementById("divUpload");
div.appendChild(img);
}
</script>