当前位置:开发者网络 >> 网页特效 >> 表单操作 >> 内容
精彩推荐
分类最新特效
分类热点特效
  
点击后可更换图片的下拉框(图片载入时还可随机显示)
日期:2005-06-02   人气:   【字体: 】【收藏此文


<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! -->
<!-- 要实现此效果需要 1 个步骤: -->

<!-- 第 1 步: -->
<!-- 把下面的代码加到<BODY></BODY>区域中: -->

<script>
function showimage(){
document.images.tus.src=""+document.f1.userface.options[document.f1.userface.selectedIndex].value+"";
}

facetol=4;
temp = Math.floor(Math.random() * facetol+1);

document.write("<img src=../images/296/"+temp+".gif name=tus> ")
document.write("<form name=f1><select name=userface size=1 onChange=showimage()>")

for(i=1;i<=facetol;i++) {
if (i==temp) ii="selected";else ii=""
document.write("<option value='../images/296/"+i+".gif' "+ii+">"+i+"</option>")
}
document.write("</select></form>")
</script>