我正在寻找与此处给出的相同答案: 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 属性。