PHP - highligh Seçilen bağlantı

2 Cevap php

Nasıl "vurgulamak" üzerine tıklandığında bir bağlantı (her neyse .., cesur olun, farklı bir renge dönüş) mi?

Example is here: http://www.celebrything.com/ Trying to get the Today, Week, and Month links in the right sidebar to turn a different color once clicked.

Burada sağ kenar çubuğu sonuçlarını göstermek için kullanıyorum kodu:

<div id="sidebar">

<div class="post">
<h2>

<font color="#333333">Top 50 Celebrities</font>
<br>
<br>
<font color="#333333"><a href="index.php?table=today">Today</a></font>
<font color="#333333"><a href="index.php?table=week">Week</a></font>
<font color="#333333"><a href="index.php?table=month">Month</a></font>
</font>
<br>
<br>

<?php

function showTable ($table){

if (!in_array($table, array('today', 'week', 'month'))) {
  return false;
}

global $wpdb;
$result = $wpdb->get_results('SELECT name, count FROM wp_celebcount_' . $table);
foreach($result as $row) {
echo '<a href="http://www.celebrything.com/?s=' .
    urlencode($row->name) . '&search=Search">' . $row->name .
    '</a> - ' . $row->count . ' Posts<br/>';
}
}


if (!empty($_GET['table'])) {
showTable($_GET['table']);

} else { showTable('today'); }

?>




</h2>
</div>

</div>

<div class="clear"></div>

2 Cevap

CSS yapabilirsiniz.

Bir bağlantı herhangi bir noktada ziyaret olmuşsa:

<style type="text/css">
a:visited { color: red; }
</style>

Bağlantı odak varsa:

a:focus { color: red; }

Note: IE7 ve desteklemeyen düşük :focus. CSS contents and browser compatibility ve :focus bakın.

Lütfen soran howto yaparsanız burada aktif geçerli sayfa bunu nasıl olduğunu:

<font color="#333333"><a class="<?php echo currentPage('today') ?>" href="index.php?table=today">Today</a></font>
<font color="#333333"><a class="<?php echo currentPage('week') ?>" href="index.php?table=week">Week</a></font>
<font color="#333333"><a class="<?php echo currentPage('month') ?>"href="index.php?table=month">Month</a></font>


function currentPage($isTableSet)
{
    if($_GET['table'] == $isTableSet)
    	return 'selected'
    else
    	return '';
}

. Ve belki bir şey bu böyle, ne istersen için css ve tarzı bunu seçilen sınıf eklemek gerekir:

<style type="text/css">
    .selected  {
    	font-weight: bold;
    }
</style>