请问,如何将
1<iframe>里的内容取出,例如:
2<iframe id="hello" src="a.txt"></iframe>
3
4a.txt的内容为:“你好!!!!!”
5我们可以看到,可是这样做为什么不能如愿:
6
7<script language="javascript">
8alert(document.all("hello").innerText);
9</script>
10
11\---------------------------------------------------------------
12
13<iframe id="hello" src="a.txt"></iframe>
14<script language="javascript">
15function e()
16{
17alert(document.frames("hello").document.body.innerText);
18}
19</script>
20<input onclick="e()" type="button" value="get"/>
21
22把你的txt和htm文件放到一个虚拟目录下即可</iframe>