国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

asp select下拉菜單選擇圖標并實時顯示

2020-07-27 12:55:53
字體:
來源:轉載
供稿:網友
靜態(tài)方法:將下面的代碼復制到<body>~</body>內
程序代碼
<table cellpadding="2" width="226" cellspacing="2" border="0" >
<tr>
<td width="32" align="right"><img id=idface src="..../../../bbs/images/icon/1.gif" alt=個人形象代表 width="32" height="32"></td>
<td width="30" ><font class=cha2>頭像</font></td>
<td width="69">
<select class=editbox1 onChange="document.images['idface'].src=options[selectedIndex].value;">
<option value=../../../bbs/images/icon/1.gif selected>頭像1</option>
<option value=../../../bbs/images/icon/2.gif select>頭像2</option>
<option value=../../../bbs/images/icon/3.gif select>頭像3</option>
<option value=../../../bbs/images/icon/4.gif select>頭像4</option>
<option value=../../../bbs/images/icon/5.gif select>頭像5</option>
<option value=../../../bbs/images/icon/6.gif select>頭像6</option>
<option value=../../../bbs/images/icon/7.gif select>頭像7</option>
<option value=../../../bbs/images/icon/8.gif select>頭像8</option>
<option value=../../../bbs/images/icon/9.gif select>頭像9</option>
<option value=../../../bbs/images/icon/10.gif select>頭像10</option>
<option value=../../../bbs/images/icon/11.gif select>頭像11</option>
<option value=../../../bbs/images/icon/12.gif select>頭像12</option>
<option value=../../../bbs/images/icon/13.gif select>頭像13</option>
<option value=../../../bbs/images/icon/14.gif select>頭像14</option>
<option value=../../../bbs/images/icon/15.gif select>頭像15</option>
<option value=../../../bbs/images/icon/16.gif select>頭像16</option>
<option value=../../../bbs/images/icon/17.gif select>頭像17</option>
<option value=../../../bbs/images/icon/18.gif select>頭像18</option>
<option value=../../../bbs/images/icon/19.gif select>頭像19</option>
<option value=../../../bbs/images/icon/20.gif select>頭像20</option>
</select>
</td>
<td width="69">--> 靜態(tài)</td>
</tr>
</table>
ASP數組方法:將下面的代碼復制到<body>~</body>內
程序代碼
<table cellpadding="2" width="241" cellspacing="2" border="0" >
<tr>
<td width="32" align="right"><img id=idface1 src="..../../../bbs/images/icon/1.gif" alt=個人形象代表 width="32" height="32"></td>
<td width="30" ><font class=cha2>頭像</font></td>
<td width="62">
<select onChange="document.images['idface1'].src=options[selectedIndex].value;" class="editbox1" >
<%
dim i
for i=1 to 20
%>
<option select value="../../../bbs/images/icon/<%=I%>.gif">頭像<%=I%></option>
<%
next
%>
</select>
</td>
<td width="91"> --> ASP 數組 </td>
</tr>
</table>
共同點:
1、<img id=idface src="1.gif">                // 都必須在默認的圖片上賦一個ID號
2、<select onChange="document.images['idface'].src=options[selectedIndex].value;"> // 再在下拉菜單中調用這個ID
  ......
  </select>
不同點:
在靜態(tài)的制作方法中:
程序代碼
  <select ......>
   <option value=1.gif > 頭像1 </option>      // 直接在下拉菜單中的option選項中賦予路徑
   <option value=2.gif > 頭像2 </option>
   ......
  </select>
--------------------------------------------------------------------------------
在ASP數組 定義方法中:
程序代碼
  <select ......>
  <% dim i                           // 定義數組 i
    for i=1 to 20                        // 定義 i 的值為1~20
  %>
  <option select value="<%=I%>.gif">頭像<%=I%></option>       // 顯示第一條選項的值
  <% next %>                           // 下一條
  </select>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 平利县| 杨浦区| 沙雅县| 安国市| 巴林右旗| 镇原县| 郧西县| 工布江达县| 三都| 北宁市| 五大连池市| 漳州市| 余江县| 云龙县| 保德县| 阿克苏市| 东山县| 霍邱县| 邳州市| 辽阳市| 洪江市| 二连浩特市| 墨竹工卡县| 镇原县| 庄河市| 临清市| 麻栗坡县| 凤冈县| 息烽县| 晴隆县| 万山特区| 芮城县| 纳雍县| 石台县| 西畴县| 九江县| 郁南县| 景洪市| 商洛市| 象州县| 洛川县|