怎么使用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获取

参考技术A <scrpit type="text/javascript">window.alert(document.getElementById("DropDownList的ID").value);</script>

以上是关于怎么使用JS获取@Html.DropDownList页面选中值的主要内容,如果未能解决你的问题,请参考以下文章

怎么按元素id 使用js为页面元素绑定click()方法?

静态页面怎么用js获取cookie

js怎么获得鼠标当前坐标

怎么使用JS获取@Html.DropDownList页面选中值

我要用js获取页面上的所有元素怎么写

怎么用JS获取某一个指定页面(非本页面)的HTML代码?