jQuery   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery – 如何为Ajax.ActionLink制作自定义帮助程序大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个像Ajax.ActionLink一样工作的帮助器.我创建了一个帮助程序,通过一些更改来执行此操作:

@Helper AjaxLink(String innerhtml,String href,String targetId)
{
    if (!String.IsNullOrEmpty(innerhtml))
    {
        if (href.Trim() == "#")
        {
            <a href="@(href)">
                @mvcHtmlString.Create(innerhtml)
            </a>
        }
        else
        {
            <a href="@(href)" data-ajax-update="#@(targetId)" data-ajax-mode="replace">
                @mvcHtmlString.Create(innerhtml)
            </a>
        }

    }
}

我的助手创建了一个链接

<a href="ItemRegister?TESTTYPEId=1" data-ajax-update="#pagEID" data-ajax-mode="replace">
     <i class="fa fa-sign-out"><span style="right: -47px;" class="icon-bg bg-orange"></span></i><span>Register </span>
</a>

但它不起作用!它刷新页面而不是填充目标

解决方法

您应该将data-ajax属性放入< a>标签

<a href="@(href)" data-ajax-update="#@(targetId)" data-ajax-mode="replace" data-ajax="true">
       @mvcHtmlString.Create(innerhtml)
</a>

大佬总结

以上是大佬教程为你收集整理的jquery – 如何为Ajax.ActionLink制作自定义帮助程序全部内容,希望文章能够帮你解决jquery – 如何为Ajax.ActionLink制作自定义帮助程序所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。