我一直试图更新TextBoxFor控件的title属性,以显示当前框中的内容。看起来这应该是相当直接的,但我无法弄清楚我的生活。我目前从我的模型中提取以下内容。我需要的是让它更新为文本框的值随时更改。
@Html.TextBoxFor(model => model.Earn.PurgeCriteriaInfo, new { style = "width:100%;", readOnly = "true;", Title = Model.Earn.PurgeCriteriaInfo })
答案 0 :(得分:1)
您需要处理文本框的.change
事件并更新属性
$('#Earn_PurgeCriteriaInfo').change(function() {
$(this).attr('title', $(this).val());
});