在DropDownList http helper ASP.NET MVC中添加javascript事件

时间:2015-04-06 23:08:25

标签: c# asp.net asp.net-mvc razor

我有这段代码:

<div class="col-xs-6 col-sm-3">
        @Html.DropDownList("cssFiles", (IEnumerable<SelectListItem>)ViewBag.cssFiles, "Crear Nuevo", new { @class = "form-control", @id = "selCssFile" })
        <span>
            <input type="text" class="form-control" id="txtFileName" style="display:none;" placeholder="Nombre del archivo">
        </span>
</div>

我想添加一个Javascript事件,以便在选择“Crear Nuevo”时显示“txtFileName”,并在下拉列表更改时隐藏它

1 个答案:

答案 0 :(得分:2)

基本上你需要在你的下拉元素上附加click事件。

<强>代码

$('#selCssFile').on('change',function(){
   //implement code after selected the option
});