<div id="class" style="cursor: pointer">
<label id="cost">@Html.DisplayFor(modelItem => item.Cost)</label>
<div class="no" hidden="hidden">
<input type="text" id='@item.PriceId' class="text" style="text-align:center;" onkeypress="if(event.keyCode==13)" value='@item.Cost.ToString()' />
</div>
</div>
私はこのhtmlコードを持っていますそして私はこのjqueryコードが欲しいです:
$(".text").live("keypress",function (event) {
if (event.which == 13) {
event.preventDefault();
$.getJSON('/Price/AjaxPriceEdit', { id: $(this).attr("id"), cost: $(this).val() }, function (data) {
});
$(this).hide();
//Here I want to show #cost
}
});
ここで、div#classにある#costを選択したいのですが、マークされた場所でどのように選択できますか?