これはコードです:
<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">
.