つづきです・2
先ほどの質問のプログラムです。
どうぞよろしくお願いいたします。
(*印はサイトアドレスまたはファイル名です。)
<script tupe="text/javascript">
<!--
window.onerror=null
function getMouseX(e){
if(document.layers)return e.pageX
if(document.all) return document.body.scrollLeft+event.clientX
}
function getMouseY(e){
if(document.layers)return e.pageY
if(document.all) return document.body.scrollLeft+event.clientY
}
function moveLAYER(layName,x,y){
if(document.layers)document.layers[layName].moveTo(x,y) //NN用
if(document.all)document.all(layName).style.pixelLeft=x //IE用
if(document.all)document.all(layName).style.pixelTop=y //IE用
}
function setBGCOLOR(layName,color){
if(document.layers)document.layers[layName].bgColor=color
if(document.all)document.all(layName).style.backgroundColor=color
}
var nn4=!!document.layers
var ie4=!!document.all
function showHELP(no,e){
var offsetx=1
var offsety=1
moveLAYER('helplay'+no,(getMouseX(e)+offsetx),(getMouseY(e)+offsety))
}
function hideHELP(no,e){
moveLAYER('helplay'+no,-100,-3)
}
//-->
</script>
<STYLE TYPE="text/css">
<!--
A { font-family:Osaka,Arial;font-size:10pt }
.helplay { position:absolute;top:-100;left:-3
<!---->
</STYLE>
</head>
<body bgcolor="#969696" link="#3c3c3c" text="white">
(つづきます)
関連URL:http://oshiete1.goo.ne.jp/kotaeru.php3?q=453166