<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。如何在标记的地方选择它?