2012-03-08 1 views

答えて

1

これは非常に一般的ですが、たとえばjqueryのを使用する場合は、あなたのアプリケーションでJSを使用することができます場合はdelay

$('#my-link').hide().delay(10000).show(); 
+0

もし彼がJqueryを使用している場合 –

+0

Facebookのタブでこれを置くべきで、静的なHTMLは動かない –

+0

@Ofir Baruch私はこれを言います – dotoree

0

を使用することができ、あなたが使用することができます

<script> 

function showLink() 
{ 
var link = document.getElemenyById('the_link'); 
link.class = "visibleToAll"; 
} 

window.setTimeout('showLink()',10000); 

</script> 
<style> 
.hiddenFromAll{ 
display:none; 
} 
.visibleToAll{ 
display:inline; 
} 
</style> 
<div id='the_link' class='hiddenFromAll'> 
http://www.bla.com 
</div>