如何从我的位置选择带有 class="date" 和 id="z" 的标签?
<td style="width:300px;height:40px;" id="pricePanel">
<div id="class">
<label class="priceNumber" id="label">test</label>
<div class="no" hidden="hidden">
<input type="text" id='priceNumber' class="text" style="text-align:center;" onkeypress="if(event.keyCode==13)" value='@item.Cost.ToString()' />
</div>
<div>
</td>
<td id="x">
<label class="date" id="z">@date</label>
</td>
我的位置在我的 jQuery 代码的文本框块中:
$(".text").live("keypress", function (event) {
//Here I want to change the text of the label with class="date" and id="z"
});
注意:在主代码中我有一个循环,不幸的是有一些标签具有相同的类和 id,因此我想在我更改了文本的文本框之后选择标签。