如何使用jquery更新这些标记<center></center>
这里是HTML
<h1 id="total_contacts"><center>0</center></h1>
这是我的观察
我认为我的jquery不是针对中心标签。
$("#total_contacts").text(total_contacts);
答案 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)
工作演示
$("#total_contacts center").text(total_contacts);//not $("#total_contatcs")
&#13;
$("#total_contacts center").text('Hi user3436467');
&#13;
答案 1 :(得分:0)
<h1 id="total_contacts"><center>0</center></h1>
<script>
$("#total_contacts center").html("5");
</script>
在你的js中写你的变量而不是5,并确保将jquery添加到你的html