我无法理解如何将状态栏中的链接隐藏到guest,我的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>
答案 0 :(得分:1)
使用此代码:
<a href="http://pustakakoran.com" onMouseOver="window.status='Go to MyWebsite'; return true;" onMouseOut="window.status='';" >PustakaKoran</a>
答案 1 :(得分: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 ^^ ^^
?>
另外; 请不要发布您的问题的链接作为对其他问题的评论。相反,请尝试使用有效标记标记您的帖子,以便人们在其首页上看到您的问题。对于您的帖子,我建议php html甚至javascript。
为什么要以任何方式隐藏链接?如果您有隐藏数据,请考虑隐藏字段,$_SESSION
变量,$_POST
变量,Cookie等。