更新文本而不杀死href

时间:2012-02-19 14:11:38

标签: jquery

我正在尝试更新以下HTML中的文本,现在是1050。

<h2 class="g1 RightText" id="commandCount"><a href="@Url.Action("Index", "Commands")">1050</a></h2>

我尝试了以下内容,但这些删除了href链接:

$("#commandCount").text(commandCount);
$("#commandCount").html(commandCount);

任何想法?

2 个答案:

答案 0 :(得分:4)

调整选择器以获取div中的锚元素:

$("#commandCount a").text(commandCount);

答案 1 :(得分:0)

因为您需要将焦点设置为<h2>

时选择整个<a>

像这样:

   $("#commandCount a").html(commandCount);

OR

   $("h2 a").html(commandCount);