从外部网站获取所有脚本

时间:2011-12-14 12:48:29

标签: php javascript wget bookmarklet

我这里有一些代码,我用这个代码渲染外部页面(类似于iframe),但我得到了一个源代码。但是,当我开始我的代码时,一切都很好,但是有一个窗口显示在那里,我无法关闭他看内容。这是代码: 代码:

<?php

$url = 'http://www.kupime.com/';

$data = file_get_contents($url);

$data = '<head><base href='.$url.' target="_blank" /></head>'.$data;

echo $data;

?>

这会生成一个好的HTML页面,但要关闭窗口我还需要使用此书签获取所有脚本

javascript: (function(){
    s = document.getElementsByTagName('SCRIPT');
    tx = '';
    sr = [];
    for (i = 0; i < s.length; i++) {
        with (s.item(i)) {
            t = text;
            if (t) {
                tx += t;
            }
            else {
                sr.push(src)
            };
                    }
    };
    with (window.open()) {
        document.write('<textarea%20id="t">' + (sr.join("\n")) + "\n\n-----\n\n" + tx + '</textarea><script%20src="http://jsbeautifier.org/beautify.js"></script><script>with(document.getElementById("t")){value=js_beautify(value);with(style){width="99%";height="99%";borderStyle="none";}};</script>');
        document.close();
    }
})();

但是我如何在上面的代码中实现这个呢?这是第一个(只有PHP代码)http://www.pluspon.com/get1.php的演示,或者可能用一些wget来做这个?

1 个答案:

答案 0 :(得分:2)

hack方式:如果你只是想摆脱窗口,你只需要添加隐藏该窗口元素的css。

<style>
#home_banner_campaign_wrapper,#active_banner_wrap {display:none;}
</style>

by,嗯......可能就是这样:

<?php

$url = 'http://www.kupime.com/';

$data = file_get_contents($url);

$style = '<style>#home_banner_campaign_wrapper,#active_banner_wrap {display:none;}</style>';

//insert the style just before the closing head tag
$data = str_replace('</head>', $style.'</head>', $data);
$data = '<head><base href='.$url.' target="_blank" /></head>'.$data;

echo $data;
?>
如果这种方式太愚蠢,请原谅我。