我无法理解如何在状态栏中隐藏访客链接,我的 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), '&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>