2013-03-05 143 views
-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>'; 
    } 

,我已經找到了一個方法,該方法工作的HTML罰款。但我怎麼能應用我的上面的PHP代碼的方法或它如何工作?下面的方法:

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

回答

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,餅乾等

+0

看到這些鏈接:http://www.silkroadbd.net/site-演示/ http://www.silkroadbd.net/site-demo/鏈接隱藏與javavoid,但鏈接不工作,當我點擊 – 2013-03-05 19:29:12

+0

我的問題解決 – 2013-03-11 13:57:19

+0

@sanjidasona不要對所有人尋找如何解決這個問題的意思。更新你原來的帖子,並解釋你做了什麼來解決它,所以其他人搜索同樣的問題會弄清楚他們做錯了什麼。 – h2ooooooo 2013-03-11 14:22:57

1

使用此代碼:

<a href="http://pustakakoran.com" onMouseOver="window.status='Go to MyWebsite'; return true;" onMouseOut="window.status='';" >PustakaKoran</a> 
+0

「status屬性在IE,Firefox,Chrome,Safari或Opera 15及更新版本的默認配置中不起作用。」 :https://www.w3schools.com/jsref/prop_win_status.asp – dragoeco 2017-11-30 09:54:36