码迷,mamicode.com
首页 > Web开发 > 详细

MVC--以下各节已定义,但尚未为布局页“~/Views/Shared/_LayoutIndex.cshtml”呈现:“scripts”。

时间:2017-09-16 13:28:55      阅读:650      评论:0      收藏:0      [点我收藏+]

标签:alt   exp   red   需要   har   false   col   image   解决方法   

 在自页面中加入:

@section scripts{
    <script>
        $("#LinkUrl").click(function () {
            var linkUrl = "/Home/UserIndex";
            if ($("#userHome").length > 0) {
                linkUrl = "/Home/IndexP";
            }
            location.href = linkUrl;
            return false;
        });
       
    </script>
    }

 报以下错误。

 

技术分享

 

解决方法:需要在模板也中加上

@RenderSection("scripts", false)

MVC--以下各节已定义,但尚未为布局页“~/Views/Shared/_LayoutIndex.cshtml”呈现:“scripts”。

标签:alt   exp   red   需要   har   false   col   image   解决方法   

原文地址:http://www.cnblogs.com/qingtianoye/p/7530703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!