-1
我在ASP.NET MVC Core項目中有一個下拉列表。MVC Core:ViewComponent onload event equivalent
<div class="form-group">
<div class="col-md-10">
@Html.DropDownListFor(t => t.AnimalTypeID, Model.AnimalTypeList,
new { onchange = "performStuff();" })
</div>
</div>
的onchange
事件就像一個魅力,並隱藏某些含頁字段(即,「皮毛顏色」或「喙類型」文本框),這取決於所述下拉選擇。
我也想調用ViewComponent加載/準備的相同功能。有沒有辦法做到這一點?
I.e.我基本上希望能有這個相同的,如果這可能是可能的,請嗎?
@Html.DropDownListFor(t => t.AnimalTypeID, Model.AnimalTypeList,
new { onload="alertFunction();" ,onchange = "performStuff();" })
<script type="text/javascript">
function alertFunction()
{
alert('hello world!');
}
</script>
你可以在你的解決方案中使用jQuery嗎? – Ignas
當然,這是我可以感謝的選擇。 – BunnyMcButchFluffykinsMarauder
在答案中增加了更多細節。 – Ignas