-2

我无法理解如何在状态栏中隐藏访客链接,我的 php 代码如下:

//file column
    echo '<td width="75%" class="default_td" align="left" valign="top"><a class="default_a" href="', $this_file;
    $npart = $dir . $value;
    if (preg_match('/\|$/', $value)) //it is a link, not an actual file
    {
        $value = substr($value, 0, -1);
        $npart = substr($npart, 0, -1);
        $display = get_stored_info($value, $dir.$links_file);
        if ($display == '')
        {
            $display = $value;
        }
        echo 'dir=', translate_uri($subdir), '&amp;link=',
            translate_uri($value), '" title="Click here to Download ', $filename, '">',
            icon(ext($display)), htmlentities($display), '</a>';
    }

我找到了一种方法,该方法可以正常工作。但是我如何应用我上面的 php 代码或它是如何工作的方法?下面的方法:

<a style="cursor: pointer"  onclick="javascript: window.location = 'http://www.mydomain.com/';">Go To SO</a>
4

2 回答 2

1

使用此代码:

<a href="http://pustakakoran.com" onMouseOver="window.status='Go to MyWebsite'; return true;" onMouseOut="window.status='';" >PustakaKoran</a>
于 2015-02-22T18:07:07.487 回答
0

只需在 PHP 中回显字符串,但记得转义引号吗?

<?php
    echo '<a style="cursor: pointer"  onclick="javascript: window.location = \'http://www.mydomain.com/\';">Go To SO</a>';
    // Remember to escape 's as they're also used to create the string       ^^                        ^^
?>

还; 请不要将您的问题的链接发布为对其他问题的评论。相反,请尝试使用有效标签标记您的帖子,以便人们会在他们的首页上看到您的问题。对于您的帖子,我建议您使用 甚至

为什么要以任何方式隐藏链接?如果您有隐藏数据,请考虑隐藏字段、$_SESSION变量、$_POST变量、cookie 等。

于 2013-03-05T18:07:19.770 回答