我不明白怎麼可以隱藏狀態欄的鏈接來客人,我的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>
看到這些鏈接:http://www.silkroadbd.net/site-演示/ http://www.silkroadbd.net/site-demo/鏈接隱藏與javavoid,但鏈接不工作,當我點擊 – 2013-03-05 19:29:12
我的問題解決 – 2013-03-11 13:57:19
@sanjidasona不要對所有人尋找如何解決這個問題的意思。更新你原來的帖子,並解釋你做了什麼來解決它,所以其他人搜索同樣的問題會弄清楚他們做錯了什麼。 – h2ooooooo 2013-03-11 14:22:57