您的位置:首页 > 其它

select控件的OnChange事件

2007-04-09 14:51 381 查看

<html>


<head>


<title>onChange</title>


</head>




<body>


<form action="restaurantbuy2.aspx?" method="post" name=Restaurantbuyad_form>


<select name="EffectiveDateSel" onChange="DispayPrice();">


<option value="365" selected >1年(365天)</option>


<option value="730">2年(730天)</option>


</select>


  


<span id="calssified_price"></span>


</form>






<script type="text/javascript">...


function DispayPrice()




...{


var nSel = document.getElementById("EffectiveDateSel").value;


document.getElementById("calssified_price").innerHTML = nSel;


}


DispayPrice();


</script>




</body>


</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: