複数のdivがあり、各divにはテキストボックスとラベルがあります。テキストボックスが.focusになっているときに、ラベルにテキストを入力する必要があります
これまでのスクリプト:
$(function () {
$('input:text').focus(function () {
//how do I get the current label and populate with some text? and when clicking on a
//different textbox, I want to clear the previous label and just show the current
//div's label with some data
});
});
例えば
<div>
@Html.TextBoxFor(model => model.Title)
<label>
</label>
</div>
<div>
@Html.TextBoxFor(model => model.Name)
<label>
</label>
</div>
<div>
@Html.TextBoxFor(model => model.Address)
<label>
</label>
</div>
どうも!