mvc3 DataAnnotations具有Description屬性:MVC3顯示來自.blur上的DataAnnotations屬性的描述
例如,
[Display (Name="Title", Description="description about the title")]
public string Title { set; get};
在我看來,我想在.blur上使用jquery顯示輸入的描述文本。
<script type="text/javascript">
$(function() {
$("#title").blur(function() {
???
});
});
@Html.LabelFor(model => model.Title)
//description here, not sure how to map it.
@Html.LabelFor()//description would go here
@Html.TextBoxFor(model => model.Title)
@Html.ValidationMessageFor(model => model.Title)
THX!
THX,你是什麼意思「,而不是使用特定選擇器的通用選擇(ID)」?我有8個文本框,我應該爲每個文本框添加@title嗎? – Ben 2012-04-17 22:44:08
@Ben:查看我的更新回答 – Shyju 2012-04-17 22:52:14
非常感謝您的解釋。 – Ben 2012-04-17 22:54:46