2012-02-19 49 views
0

我試圖更新下面的HTML文本,什麼是現在1050沒有殺害更新文本HREF

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

我曾嘗試以下,但這些刪除的href鏈接:

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

有什麼想法?

回答

4

爲了得到錨元素是在div內適應您的選擇:

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

因爲你選擇整個<h2>當你需要將焦點設置於<a>

就像這樣:

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

OR

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