如何用隐藏的地址栏打开html文件

时间:2017-04-05 05:36:14

标签: javascript c# href client-side location-href

我需要打开我通过调用javascript函数动态发送的.html文件,该函数写在下面

这是我用C#写的

 Page.ClientScript.RegisterStartupScript(this.GetType(), "", "fncpopup('" + sNewFileName + "');", true);

现在我在Javascript中调用一个函数

<script type="text/javascript"> 
        //debugger;

        function fncpopup(sFileName)
        {  
            location.href = sFileName;
        }       
    </script>

我想在Location.href中打开我的.html文件,并隐藏URL状态栏。我该怎么做。

1 个答案:

答案 0 :(得分:0)

  

我想在Location.href中使用URL状态栏打开我的.html文件   隐藏。我怎么能这样做。

使用window.open

    function fncpopup(sFileName)
    {  
        window.open(sFileName, '_blank', 'toolbar=0,location=0,menubar=0');
    }    

检查documentation

中的更多选项