怎么使用JS获取@Html.DropDownList页面选中值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么使用JS获取@Html.DropDownList页面选中值相关的知识,希望对你有一定的参考价值。
<scrpit type="text/javascript">window.alert(document.getElementById("DropDownList的ID").value);</script>//纯js获取
<scrpit type="text/javascript">window.alert($("#DropDownList的ID").val());</script>//jquery获取
以上是关于怎么使用JS获取@Html.DropDownList页面选中值的主要内容,如果未能解决你的问题,请参考以下文章