如果在MVC .cshtml页面

时间:2018-11-01 04:15:47

标签: javascript c# asp.net-mvc razor

是否可以使用MVC cshtml页面中的if else语句

 <div class="primary-content">
            if(DetectIE())
            {
            <embed data-bind="attr: { src: data.files()[currentPage()] + '#toolbar=0&amp;navpanes=0&amp;scrollbar=0' }" type="application/pdf" style="width: 100%; height: 800px !important;">
            }
            else
            {
            <object data-bind="attr: { data: data.files()[currentPage()] + '#toolbar=0&amp;navpanes=0&amp;scrollbar=0' }" type="application/pdf" width="100%" height="600px"></object>
            }
        </div>

我有一个javascript代码来检测当前浏览器是否为Internet Explorer。如果它是IE,则使用<embed>标签,否则使用<object>标签。

任何建议或帮助将不胜感激。

预先感谢

2 个答案:

答案 0 :(得分:1)

由于DetectIE()是JS函数,因此不能将其用作与Razor @if块的比较。您应该将其与<script>一起放在jQuery.append()内,以将适当的标签附加到目标元素中:

<script>
$(function() {
    // other stuff

    if (DetectIE())
    {
        $('#targetElement').append("<embed data-bind=\"attr: { src: data.files()[currentPage()] + '#toolbar=0&amp;navpanes=0&amp;scrollbar=0' }\" type=\"application/pdf\" style=\"width: 100%; height: 800px !important;\">");
    }
    else
    {
        $('#targetElement').append("<object data-bind=\"attr: { data: data.files()[currentPage()] + '#toolbar=0&amp;navpanes=0&amp;scrollbar=0' }\" type=\"application/pdf\" width=\"100%\" height=\"600px\"></object>");
    }
});
</script>

目标元素的示例:

<div id="targetElement" class="primary-content"></div>

如果要从控制器端检查IE的任何版本,可以使用以下方法:

bool isIE = (Request.Browser.Browser == "IE" || Request.Browser.Browser == "InternetExplorer");

然后将值传递给ViewBag

ViewBag.IsIE = isIE;

JS使用示例

if (@ViewBag.IsIE)
{
   // render embed tag
}
else
{
   // render object tag
}

答案 1 :(得分:0)

您不能直接在razor中使用javascript函数。因此更好地使用Request .Browser获取浏览器名称

@{bool IsIE = false ;
if (Request.Browser.Type.ToUpper().Contains("IE"))
{ 
    IsIE = true;
}

}
@if (IsIE)
{
    // Your Razor here
}
else
{
    //  Your Razor here
}