jquery用新值

时间:2016-02-29 11:43:38

标签: jquery

如何使用jquery更新这些标记<center></center>

中的值

这里是HTML

<h1 id="total_contacts"><center>0</center></h1>

这是我的观察

我认为我的jquery不是针对中心标签。

$("#total_contacts").text(total_contacts);

2 个答案:

答案 0 :(得分:2)

►您使用的ID错误。

def nested_sum(lists):
    list_sum = 0
    for i in lists:
        list_sum += sum(i)
    print (list_sum)

lists = [[1],[1, 2], [1, 2, 3], [1, 2, 3, 4], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 6] ]

nested_sum(lists)

工作演示

&#13;
&#13;
 $("#total_contacts center").text(total_contacts);//not $("#total_contatcs")
&#13;
$("#total_contacts center").text('Hi user3436467');
&#13;
&#13;
&#13;

答案 1 :(得分:0)

<h1 id="total_contacts"><center>0</center></h1>
<script>
$("#total_contacts center").html("5");
</script>

在你的js中写你的变量而不是5,并确保将jquery添加到你的html