如何打开div内的点击打开链接?

时间:2013-04-27 03:22:45

标签: php html parsing php-parser

我正在建立一个解析西班牙字典的网站。如果您查找单词HOLA,您将收到定义,但换句话说,您会收到建议,例如CASA:http://verbum.xtrweb.com/verbumpost.php?word0=hola&word-1=casa

我希望:当您点击建议时(例如我上面发布的示例中的CASAR)将结果打印在像HOLA这样的div中。这是我目前使用的代码:

    $words = array('word0','word-1');
    function url_decode($string){
    return urldecode(utf8_decode($string));
    }

    $baseUrl = 'http://lema.rae.es/drae/srv/search?val=';

    $cssReplace = <<<EOT

    <style type="text/css">
    // I changed the style
    </style>
    </head>
EOT;

$resultIndex = 0;

foreach($words as $word) {
if(!isset($_REQUEST[$word]))
    continue;

$contents = file_get_contents($baseUrl . urldecode(utf8_decode($_REQUEST[$word])));

$contents = str_replace('</head>', $cssReplace, $contents);
$contents = preg_replace('/(search?[\d\w]+)/','http://lema.rae.es/drae/srv/search', $contents);


echo "<div style='
      //style
     ", (++$resultIndex) ,"'>", $contents,
        "</div>";
}

我正在开始编码,所以请耐心等待,我也尝试了一些朋友建议的DOM代码,但它无法正常运行。

1 个答案:

答案 0 :(得分:1)

我认为你需要在div中放一个iframe。 或尝试使点击f'n发生在javascript / jquery中 - 点击后进行一些ajax调用,并在div中显示/追加返回的结果(建议)