| ■
Text Change
■ 〜マウスポインタでテキストチェンジ 〜 |
マウスポインタを載せると上の文字が変わります
<SCRIPT Language="JavaScript">
<!--
function setText(tagName,theText)
{
if (document.all) window[tagName].innerText = theText;
if (document.layers)
{
document[tagName].document.open("text/html");
document[tagName].document.write(theText);
document[tagName].document.close();
}
}
// -->
</SCRIPT>
|
<DIV style="position:absolute" id="text1">
ここの文字が変わります
</DIV>
<BR>
<A HREF="textChg.htm" onMouseover="setText('text1','Welcome to Keizu Square')"
onMouseout="setText('text1','ここの文字が変わります')">
マウスポインタを載せると上の文字が変わります</A>