<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>
我有這個網站code.And我想這個jQuery代碼:如何在第二級選擇一個div?
$(".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
}
});
現在我要選擇#cost是在div#class.How我可以在顯着的地方選擇呢?
+1,你還可以說什麼? – George 2013-02-27 09:24:32