6
Benim jilet görünümünün buAjax.ActionLink OnSuccess'a hangi öğeyi ajax başlattığını nasıl söylerim
@Ajax.ActionLink("A", "Buy", new AjaxOptions() { HttpMethod = "Post", OnSuccess = "updateLetter" }, new { id = "letter-A" })
@Ajax.ActionLink("B", "Buy", new AjaxOptions() { HttpMethod = "Post", OnSuccess = "updateLetter" }, new { id = "letter-B" })
@Ajax.ActionLink("C", "Buy", new AjaxOptions() { HttpMethod = "Post", OnSuccess = "updateLetter" }, new { id = "letter-C" })
ve benim javascript gibi bir şeye benzemesini istiyorum:
function updateLetter(letter)
{
$("#letter-" + letter).toggleClass('selected');
}
ve sınıfı o öğe üzerinde değiştirebilir. Tam olarak nasıl bağlanacağından emin değilim. Neyi kaçırıyorum?