小提琴:http://jsfiddle.net/MhWm5/16/隔離jQuery的KEYUP更新一類
我有些動態生成的錶行/值與動態的ID
<td class="control-group">
<input name="price[418]" class="price" value="199.00">
<span class="calcprice">I want this SPAN tag to update</span>
</td>
<td class="control-group">
<input name="price[424]" class="price" value="67.00">
<span class="calcprice">I DO NOT WANT this SPAN tag to update</span>
</td>
我有一個簡單的jQuery KEYUP功能設計在這裏更新SPAN:
$('.price').keyup(function() {
var AskPrice = $(this).val();
var calcSpan = ".calcprice";
var itemCost = AskPrice * (.8);
console.log(itemCost); // just for giggles
$(this).parents().find(calcSpan).text(" You will receive $" + itemCost);
});
當第一個輸入字段的用戶類型,跨度在兩個表中的行更新,這是我不想要的東西。我可以在每個範圍調整課程的名稱,但我認爲這沒有幫助。
任何幫助是偉大的。