我有文件http://host1.com/links.txt
links.txt 包含:
com http://host1.com/1.jpg
info http://host1.com/2.jpg
org http://host1.com/3.jpg
我需要根据主机域从该文件中放入此代码 src 链接。
a=document.getElementsByTagName('body')[0];
st='iframe';
r=st;
b=document.createElement(r);
b.src=**Here from links.txt**
b.width=300;b.height=300;b.marginHeight=10;b.marginWidth=10;b.frameborder=10;b.align='left';
a.appendChild(b);
例如我有 3 个其他网站
1. http://site1.com
2. http://site2.info
3. http://site3.org
在每个站点 index.php 中,我需要放入该 iframe 代码,并在以下源代码中:
http://site1.com/index.php 我必须有 b.src=http://host1.com/1.jpg
http://site1.info/index.php 我必须有 b.src=http://host1.com/2.jpg
http://site1.org/index.php 我必须有 b.src=http://host1.com/3.jpg
我怎样才能做到这一点?