gpt4 book ai didi

jquery - 这里如何选择h4标签?

转载 作者:行者123 更新时间:2023-12-01 06:49:46 25 4
gpt4 key购买 nike

这是代码:

<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"> 之后的一个.

最佳答案

它有自己的 id,所以:

$('#number")

如果您有更多 h4,请考虑:

$('#question h4')

关于jquery - 这里如何选择h4标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16734582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com