|
click here :
脚本说明:
第一步:把如下代码加入<head>区域中
<SCRIPT language=javascript>
<!--
function linkDisplay(selection){
if(selection=="1"){document.form.info.value="最大的中文计算机教程站";document.form.go.value="http://www.ddvip.net";}
else if(selection=="2"){document.form.info.value="非常齐全的电脑书藉下载";document.form.go.value="http://book.ddvip.net";}//链接自己可以加入,说明也可以更改!
else if(selection=="3"){document.form.info.value="众多的软件下载";document.form.go.value="http://soft.ddvip.net";}
else if(selection=="4"){document.form.info.value="无数视频教程下载";document.form.go.value="http://vip.ddvip.net";}
else if(selection=="5"){document.form.info.value="来这里参与讨论,提高技术";document.form.go.value="http://bbs.ddvip.net";}
else if(selection=="6"){document.form.info.value="这里有无数的WEB开发技术资料";document.form.go.value="http://www.ddvip.net/web";}}function moreInfo(){
var page=document.form.go.value;window.location=page;}
//-->
</SCRIPT>
第二步:把如下代码加入<body>与</body>区域中
<form name=form> <input type=hidden name=go value><table border=0 width=300> <tr> <td align=center width=111><a href=javascript:linkDisplay(1);>豆豆技术</a><br> </td> <td align=center width=123><a href=javascript:linkDisplay(2);>电脑书藉</a><br> </td> <td align=center width=160><a href=javascript:linkDisplay(3);>软件下载</a><br> </td> </tr> <tr> <td align=center width=111><a href=javascript:linkDisplay(4);>视频教程<br> </a></td> <td align=center width=123><a href=javascript:linkDisplay(5);>豆豆论坛</a><br> </td> <td align=center width=160><a href=javascript:linkDisplay(6);>WEB开发</a><br> </td> </tr> <tr> <td colspan=3 align=center width=402><div align=center><p><textarea name=info rows=5 cols=34 wrap=virtual>点击连接看个仔细</textarea><br> <input type=button name=button value=去看看 onClick=moreInfo()> </td> </tr> </table></form>
|