如果img
中有index.html
:
<script src="script/script.js" type="text/javascript"></script>
<img id="imgb" src="picture/banner1.jpg" border="0">
然后在单独的文件中,例如gallery.html
,我需要在src
中获取img
的{{1}}元素。
我尝试写这个函数:
index.html
然后尝试在function imgbbs(){
var x = document.getElementById('imgb').src;
document.getElementById('imgbb').src = x;
}
中使用它:
gallery.html
但它似乎没有起作用。如何在另一个文件中获取<script src="script/script.js" type="text/javascript"></script>
<body onload="imgbbs()">
<img id="imgbb" src="" border="0">
的{{1}}属性?
答案 0 :(得分:0)
这样做的一种方法是使用jquery加载index
页面的部分部分,如下所示:
$( "#your_image_container_in_gallery.html" ).load( "index.html #imgb" );