我需要打开我通过调用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状态栏。我该怎么做。
答案 0 :(得分:0)
我想在Location.href中使用URL状态栏打开我的.html文件 隐藏。我怎么能这样做。
使用window.open
function fncpopup(sFileName)
{
window.open(sFileName, '_blank', 'toolbar=0,location=0,menubar=0');
}
中的更多选项