PHP ver gevorderde |
|
Ik weet dat het een veel voorkomende vraag is, maar ik kan geen antwoord vinden via de zoekfunctie!
Ik heb volgend script:
<SCRIPT language="JScript">
function Informatie(tekst)
{
if(!tekst)
tekst = "Welkom!";
document.forms(0).informatie_tekst.value = tekst;
window.status = tekst;
}
function StartSelectie(sender, nummer)
{
sender.style.backgroundColor='#003399';
sender.style.fontWeight = 'bold';
switch(nummer)
{
case '0':
Informatie('Test0');
break
case '1':
Informatie('Test1');
break
case '2':
Informatie('Test2');
break
case '3':
Informatie('Test3');
break
case '4':
Informatie('Test4');
break
}
}
function StopSelectie(sender)
{
sender.style.backgroundColor='#3366cc';
sender.style.fontWeight = 'normal'
Informatie('Welkom!')
}
</SCRIPT>
<SCRIPT language="JScript"> function Informatie(tekst) { if(!tekst) tekst = "Welkom!"; document.forms(0).informatie_tekst.value = tekst; window.status = tekst; } function StartSelectie(sender, nummer) { sender.style.backgroundColor='#003399'; sender.style.fontWeight = 'bold'; switch(nummer) { case '0': Informatie('Test0'); break case '1': Informatie('Test1'); break case '2': Informatie('Test2'); break case '3': Informatie('Test3'); break case '4': Informatie('Test4'); break } } function StopSelectie(sender) { sender.style.backgroundColor='#3366cc'; sender.style.fontWeight = 'normal' Informatie('Welkom!') } </SCRIPT>
<INPUT NAME="informatie_tekst" style="COLOR: white; BORDER-TOP-STYLE: none; FONT-FAMILY: Verdana; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BACKGROUND-COLOR: transparent; BORDER-BOTTOM-STYLE: none"
TYPE="text" size="100" VALUE="Welkom!">
<INPUT NAME="informatie_tekst" style="COLOR: white; BORDER-TOP-STYLE: none; FONT-FAMILY: Verdana; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BACKGROUND-COLOR: transparent; BORDER-BOTTOM-STYLE: none" TYPE="text" size="100" VALUE="Welkom!">
en dan iets verder bij een link:
onMouseover="StartSelectie(this, '0')"
onMouseout="StopSelectie(this)"
onMouseover="StartSelectie(this, '0')" onMouseout="StopSelectie(this)"
Nu, de tekst wordt mooi getoond in het textfield als ik met mijn muis over de link ga. Maar is het ook mogelijk om dit met een span te doen. Ik weet hoe de CSS eigenschappen te veranderen van een span in JS, maar is dit ook mogelijk voor de inhoud?
|