ステータスバーのゲストへのリンクを非表示にする方法がわかりません。以下の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>';
}
そして私はメソッドを見つけました。そのメソッドはhtmlでうまく機能します。しかし、どうすれば上記のphpコードのメソッドを適用できますか、それともどのように機能しますか?以下の方法:
<a style="cursor: pointer" onclick="javascript: window.location = 'http://www.mydomain.com/';">Go To SO</a>