Ajax.ActionLink(…) with checkbox

丶灬走出姿态 提交于 2020-01-20 07:07:25

问题


Ajax.ActionLink("Link name",....)

it is possible to put checkbox in place of "Link name" ?

if so how?

thanks,


回答1:


Yes, of course that it is possible. You could use a standard checkbox:

@Html.CheckBoxFor(
    x => x.Foo, 
    new { 
        data_url = Url.Action("SomeAction", "SomeController"), 
        id = "mycheckbox" 
    }
)

and then in your separate javascript file use jQuery to subscribe to the change event of this checkbox and unobtrusively AJAXify it:

$(function() {
    $('#mycheckbox').change(function() {
        var data = {};
        data[$(this).attr('name')] = $(this).is(':checked');

        $.ajax({
            url: $(this).data('url'),
            type: 'POST',
            data: data,
            success: function(result) {
                // TODO: do something with the result    
            }
        });
    });
});


来源:https://stackoverflow.com/questions/11139920/ajax-actionlink-with-checkbox

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!