如何打开点击打开链接内的一个div



我正在构建一个解析西班牙语字典的网站。如果你查找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?[dw]+)/','http://lema.rae.es/drae/srv/search', $contents);

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

我开始编码,所以请耐心等待,我也尝试了一些DOM代码的朋友建议,但它未能发挥作用。

我认为你需要在div里面放一个iframe。或者尝试在javascript/jquery中实现单击f -在单击时进行一些ajax调用,并在div

中显示/附加返回的结果(建议)。

相关内容

  • 没有找到相关文章

最新更新