如何用js或php获取iframe的内容?


a.html 内容动态的,返回的固定格式为json,不能修改格式, a.html里的内容是必须打开了,才会显示内容,如果直接用程序请求,是空的 返回的内容如下

{"php":"11111","asp":"22222","html":"333333"}

在以下页面书写代码

<iframe id='abc'  scrolling='auto'  frameborder='0' src='a.html'></iframe>
<script>
  求 用js或php获取iframe的内容!
</script>

开发 js php iframe

Flove 10 years, 5 months ago
$页面数据 = fsockopen("地址", 端口号(一般是80), $错误编号(传地址), $错误信息(传地址), 超时时间);
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30); 

其中用到的变量都会被赋值

父皇儿臣有了 answered 10 years, 5 months ago

$页面数据 = fsockopen("地址", 端口号(一般是80), $错误编号(传地址), $错误信息(传地址), 超时时间);
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30); 

其中用到的变量都会被赋值

逼人吃精无压力 answered 10 years, 5 months ago

Your Answer