ここで与えられたのと同じ答えを探しています: HTML/CSS
しかし、私はMVC4でこれをやりたいです。
次のビューが得られました。
@using (Html.BeginForm("Kompetens", "KumaAdmin"))
{
<div class="three columns" style="margin-right: 627px;">
<h6>Kompetens</h6>
<div style="width:456px;"> @Html.ListBox("kompetensId", (SelectList)ViewBag.KomId)</div><br/>
<h6>Lägg till kompetens</h6>
<div class="focus">
@Html.EditorFor(mm => mm.KompetensTest)
</div>
<input type="submit" style="margin-right: 205px;" value="Skapa"/><br/><br/>
</div>
}
これは私のテキストボックスなので:
@Html.EditorFor(mm => mm.KompetensTest)
上記のリンクのように、「onfocus」および onblur 属性を適用する方法がわかりません。