程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> 友情連接浏覽器

友情連接浏覽器

編輯:ASP技巧

1、拷貝下面的代碼到你的Html文件的<head>和</head>之間
<SCRipT language=JavaScript>
<!--
function go_to_station(){
  if (document.stationform.stationselect.options[0].selected){
    window.location.href = "http://202.98.107.86/xutao/default.htm";}
else if (document.stationform.stationselect.options[1].selected)    
  {  window.location.href = "http://member.netease.com/~xwtao/default.htm";}  
  else if (document.stationform.stationselect.options[2].selected)    
  {  window.location.href = "http://chaofan.bentium.net/default.htm";}
  else if (document.stationform.stationselect.options[3].selected)    
  {  window.location.href = "http://laosong.yeah.net/default.htm";}  
  else if (document.stationform.stationselect.options[4].selected)    
  {  window.location.href = "http://ipismusic.yeah.net/default.htm";}
else if (document.stationform.stationselect.options[5].selected)    
  {  window.location.href = "http://digest.topcool.net";}    
else if (document.stationform.stationselect.options[6].selected)    
  {  window.location.href = "http://msbnet.yeah.net/default.htm";}    
else if (document.stationform.stationselect.options[7].selected)    
  {  window.location.href = "http://www.hiddenfbi.com/default.htm";}  
return true;  
  }
//This is were you load the Discription and the Author
function textValue(){  
  if (document.stationform.stationselect.options[0].selected){
    document.stationform.disc.value = "愛情故事,Photoshop"
    document.stationform.author.value = "【徐濤】";}
else if (document.stationform.stationselect.options[1].selected)    
  {  document.stationform.disc.value = "每日推薦一張CD,一個好站,一個MP3"
    document.stationform.author.value = "【天虹】";}  
  else if (document.stationform.stationselect.options[2].selected)    
  {  document.stationform.disc.value = "有獨有的Java和,VB教程"
    document.stationform.author.value = "【笨男孩】";}
  else if (document.stationform.stationselect.options[3].selected)    
  {  document.stationform.disc.value = "緣分天空,情感交流的好地方"
    document.stationform.author.value = "【laosong】";}  
  else if (document.stationform.stationselect.options[4].selected)    
  {  document.stationform.disc.value = "現有歌詞2681首"
    document.stationform.author.value = "【ipis】";}
else if (document.stationform.stationselect.options[5].selected)    
  {  document.stationform.disc.value = "網上原創請您推薦妙文佳作"
    document.stationform.author.value = "【koki】";}  
  else if (document.stationform.stationselect.options[6].selected)    
  {  document.stationform.disc.value = "電腦圖形設計,Flash在線教材大全"
    document.stationform.author.value = "【MSB】";}
else if (document.stationform.stationselect.options[7].selected)    
  {  document.stationform.disc.value = "如果是mm這邊進,姐妹們說悄悄話了"
    document.stationform.author.value = "【hiddenfbi】";}  
  return true;  
  }

//-->
</SCRIPT>

2、拷貝下面的代碼到你的Html文件的<body>和</body>之間

<form name="stationform">
<table>
<tr>
<td>
<select class="yk9" multiple name="stationselect" onchange="textValue()" size="8">
<option>徐濤有約</option>
<option>聽濤閣</option>
<option>超凡時速</option>
<option>紅牌樓</option>
<option>蟑螂音樂歌詞庫</option>
<option>網文觀止</option>
<option>MSB圖形世界</option>
<option>准我自我</option>
</select></td>
<td><div align="left"><p>站長大名<br>
<input type="text" name="author" size="40"> <br>
站點主題<br>
<textarea class="yk9" cols="40" name="disc" rows="3" wrap="physical"></textarea><br>
<br>
<input class="yk9" name="stationbutton" onclick="go_to_station()" type="button"
value="立刻去看看"></td>
</tr>
</table>
</form>

說明:將第一段代碼中的"鏈接地址"和"站長名稱""站點簡介"改為你自己的友情連接內容,將第二段代碼中的站點名稱修改為相對應的站點。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved