Sto tentando di creare un sito Web MVC con chiamata Ajax. Non ho problemi ad usare direttamente jquery, ma quando uso @ Ajax.ActionLink, non ottengo il risultato che voglio. Qui è la mia opinione:MVC 4 Ajax.Azione link non funzionante
<script type="text/javascript">
function deleteComment(id) {
$.post(
"/Role/AjaxTest",
//{ id: id },
function (data) {
$("#testtarget").html(data);
});
}
</script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
<h2>TITLE</h2>
<p>
@Ajax.ActionLink("Ajax Test", "AjaxTest", "Role", new AjaxOptions{UpdateTargetId="testtarget",HttpMethod = "Get" , InsertionMode = InsertionMode.Replace })
</p>
<table>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.RoleName)
</td>
<td>
<a onclick="deleteComment('@item.RoleId'); return false;" href="#">Delete</a>
@Html.ActionLink("Delete", "Delete", new { id=item.RoleId })
</td>
</tr>
}
</table>
<div id="testtarget">Test Div</div>
e qui è il mio dati Controler:
public string AjaxTest()
{
return "Some random text";
}
My Call su Jquery funziona perfettamente e il testo appare nel div, ma il mio ActionLink mi reindirizza a: localhost/Role/AjaxTest quindi ho solo il messaggio in un browser bancario.
Qualche idea di cosa c'è che non va qui?
Grazie mille in anticipo!
Sei sicuro che il file 'jquery.unobtrusive-ajax.min.js' viene caricato? –
Sì, quando faccio clic sul collegamento nella mia origine pagina web: lo apre. – Tom