ajax経由でアクションをトリガーしようとしていますが、何らかの理由で呼び出されません。私のjsコードは正常ですか?Ajaxはサーバーアクションをトリガーしません
@Html.ActionLink("LIKE", "LikeComment", "Comments", new { id = 1985 }, new{@class = "likeButton"})
$(document).ready(function() {
$(".likeButton").click(function() {
$.ajax({
url: $(this).data("action-url"),
cache: false,
success: function (html) {
alert('ss');
}
});
return false;
});
});
.likeButtonの要素はどのように見えますか? – RubbleFord
LIKE – 1110