这是代码:
<div id="question" style="float: right">
<a id="score" href="#">
<img id="@Model.QuestionId" src="~/Content/1369264038_arrow_sans_up.png" /></a>
<h4 id="number" style="text-align: center; margin-top: 7px; color: #808080;">
@Model.Score
</h4>
<a href="#">
<img src="~/Content/1369263927_arrow_sans_down.png" /></a>
</div>
我想知道如何<h4>
在 JQuery 中选择标签?请注意,我正在编写函数<a id="score">
:
$("#score").live("click",function(){
var entityId = $(this).children("img").attr("id");
$.getJSON('/Question/Score', { score: 1, entityTypeId: 1, id: entityId }, function (data) {
//here I want to change h4 tag content
});
})
编辑:我可能有其中一些 h4 标签,但我想选择之后的那个<a id="score">
。