最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

asp.net mvc - Razor view MVC 5 JavaScript - resolve document.getElementById - Stack Overflow

programmeradmin1浏览0评论

Migrating my MVC3 (aspx) project to MVC5 (razor), I use:

                <% if ((bool)this.ViewData["ReadOnly"] != true)
                   { %>
                    document.getElementById("NextAction").value = nextAction;
                    document.getElementById("VisitForm").submit();
                <% } else { %>
                    window.location = nextAction;
                <% } %>

I modified it to:

                     @if ((bool)this.ViewData["ReadOnly"] != true)
                     {
                       document.getElementById("NextAction").value = nextAction;
                       document.getElementById("VisitForm").submit();
                     } else {  
                        window.location = nextAction;
                     }  

Can not resolve either document or window?

Migrating my MVC3 (aspx) project to MVC5 (razor), I use:

                <% if ((bool)this.ViewData["ReadOnly"] != true)
                   { %>
                    document.getElementById("NextAction").value = nextAction;
                    document.getElementById("VisitForm").submit();
                <% } else { %>
                    window.location = nextAction;
                <% } %>

I modified it to:

                     @if ((bool)this.ViewData["ReadOnly"] != true)
                     {
                       document.getElementById("NextAction").value = nextAction;
                       document.getElementById("VisitForm").submit();
                     } else {  
                        window.location = nextAction;
                     }  

Can not resolve either document or window?

Share Improve this question asked Nov 3, 2014 at 18:10 hnclhncl 2,3057 gold badges63 silver badges132 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

You are missing script tags. Like so:

@if ((bool)this.ViewData["ReadOnly"] != true)
{
    <script>
        document.getElementById("NextAction").value = nextAction;
        document.getElementById("VisitForm").submit();
    </script>

}
else
{
    <script>
        window.location = nextAction;
    </script>

}

MVC uses HTML tags to enter/exit parsing of the template automatically. In your previous version you were fully wrapped in <% %> tags to identify when server side parsing should be active. Razor syntax doesn't rely on that specifically anymore, but instead will exit server side parsing when it encounters an HTML tag and re-enters it when it encounters the closing version of the tag. Try wrapping your JavaScript inside <text> tags to identify for the template parser that raw "HTML" is ing:

@if ((bool)this.ViewData["ReadOnly"] != true)
{
    <text>
    document.getElementById("NextAction").value = nextAction;
    document.getElementById("VisitForm").submit();
    </text>
} else {  
    <text>
    window.location = nextAction;
    </text>
} 
发布评论

评论列表(0)

  1. 暂无评论