| ステータスバーにリンク先の説明文を表示します |
※お使いのブラウザのステータスバーをご覧ください。
| Sample 1 | Sample 2 | |
| ■<head>〜</head>内に下記を貼り付けてください。 |
<script language="javascript">
function guide1(){
window.status="サンプル1へジャンプします。";
}
function guide2(){
window.status="サンプル2へジャンプします。";
}
function clear1(){
window.status=" ";
}
</script> |
| ■<body>〜</body>内に下記を貼り付けてください。 |
| | <a href="sample_1.html" onmouseover="guide1();return
true;" onmouseout="clear1();" target="_top">Sample
1</a> | <a href="sample_2.html" onmouseover="guide2();return
true;" onmouseout="clear1();" target="_top">Sample
2</a> | |