عمل وصف للرابط عند وضع الماوس عليه 2
طريقة التركيب
انسخ هذا الكود و ضعه في المكان الذي تريده في منطقة BODY
يمكنك استخدام أكواد html لتغيير نوع و و حجم و لون الخط <script>
var linktext=new Array()
linktext[0]="وصف الرابط الأول"
linktext[1]="وصف الرابط الثاني"
linktext[2]="وصف الرابط الثالث"
linktext[3]="وصف الرابط الرابع"
linktext[4]="وصف الرابط الخامس"
linktext[5]="وصف الرابط السادس"
var ns6=document.getElementById&&!document.all
var ie=document.all
function show_text(thetext, whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=linktext[thetext]
else if (ns6)
document.getElementById(whichdiv).innerHTML=linktext[thetext]
}
function resetit(whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=' '
else if (ns6) document.getElementById(whichdiv).innerHTML=' '
}
//
www.star28.com</script>
<!-- show_text(index# of linktext[] to show, ID of div to write to)
-->
<p>
<a href="http://www.dynamicdrive.com"
onMouseover="show_text(0,'div1')" onMouseout="resetit('div1')">الرابط
الأول</a> |
<a href="http://www.javascriptkit.com"
onMouseover="show_text(1,'div1')" onMouseout="resetit('div1')">الرابط
الثاني</a> |
<a href="http://www.freewarejava.com"
onMouseover="show_text(2,'div1')" onMouseout="resetit('div1')">الرابط
الثالث</a>
<br>
<FONT size="1" face="tahoma"><span id="div1">
</span></FONT>
<p>
<a href="http://encarta.msn.com/" onMouseover="show_text(3,'div2')"
onMouseout="resetit('div2')">الرابط الرابع</a> |
<a href="http://britannica.com/" onMouseover="show_text(4,'div2')"
onMouseout="resetit('div2')">الرابط الخامس</a> |
<a href="http://www.dictionary.com" onMouseover="show_text(5,'div2')"
onMouseout="resetit('div2')">الرابط السادس</a>
<br>
<i><FONT size="1" face="tahoma"><span id="div2">
</span></i> </FONT>