1

我有一个基于数据库填充的带有持久左导航的页面。我需要直观地标记与页面右侧当前呈现的内容相对应的菜单项。我在检查当前页面时遇到问题。(我正在学习 PHP 并试图编辑别人的代码,这个人早就走了。)

这是菜单的代码:

while( ( $row = mysql_fetch_array( $result ) ) && ( $count < $limit ) ) {
    $count++;
    echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\" >" . stripslashes( $row['title'] ) . "</a></li>\n";

..ETC。可以很好地生成菜单列表。然后我想我想要做的是将这段代码产生的 URI 与当前加载的页面进行比较,以确定是否应该为当前页面添加 CSS 样式。

所以我尝试了这个:

echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\" <?php if( $_SERVER['REQUEST_URI'] == "$this" ) echo " class=\"selected\""; ?>>" . stripslashes( $row['title'] ) . "</a></li>\n";

出现语法错误。所以尝试了这个:

echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\" <?php if( $_SERVER['REQUEST_URI'] == $this ) echo " class=\"selected\""; ?>>" . stripslashes( $row['title'] ) . "</a></li>\n";

仍然有语法错误。所以尝试了这个:

echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\" <?php if( $_SERVER['REQUEST_URI'] == $row['id'] ) echo " class=\"selected\""; ?>>" . stripslashes( $row['title'] ) . "</a></li>\n";

建议?

4

2 回答 2

1

终于成功了。我找到了一种让它工作的方法,尽管代码可能不够优雅。我无法在 echo 语句中比较 URI 和 $row['id']。所以我创建了一个单独的函数来进行比较,并将结果返回给 echo 语句,如下所示:

echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\"" . $this->checkRow($row['id']) . ">" . stripslashes( $row['title'] ) . "</a></li>\n";

function checkRow($myID)
{
if( strstr( $_SERVER['REQUEST_URI'], $myID ) )
{
 return " class=\"selected\"";
 }
}
于 2013-10-07T22:29:57.720 回答
0

在第一个示例中,您的 echo 语句中有 php 标签

echo "\t\t\t<li><a href=\"" . NEWS_URL . "?show=news&amp;action=show&amp;id=" . $row['id'] . "\" <?php if( $_SERVER['REQUEST_URI'] == "$this" ) echo " class=\"selected\""; ?>>" . stripslashes( $row['title'] ) . "</a></li>\n";

尝试这个

echo "\t\t\t<li><a href=\"".NEWS_URL."?show=news&amp;action=show&amp;id=".$row['id']."\".  ($_SERVER['REQUEST_URI'] == $this ?"class=\"selected\"" :"").stripslashes( $row['title'] )."</a></li>\n";
于 2013-09-02T19:28:15.617 回答