怎么在javaScript中获取asp.net网站的绝对路径
我想用JS跳转,但是要绝对路径才能保证我的跳转正确window.location.href='../index.aspx';应该怎么写?我做成用户控件了,要保证每个用到的...
我想用JS跳转,但是要绝对路径才能保证我的跳转正确window.location.href='../index.aspx';
应该怎么写?
我做成用户控件了,要保证每个用到的页面都跳转正确,请问应该怎么做? 展开
应该怎么写?
我做成用户控件了,要保证每个用到的页面都跳转正确,请问应该怎么做? 展开
3个回答
展开全部
不用知道绝对路径
window.loaction.href="index.aspx"
同级目录下的index.aspx页面
window.loaction.href="file/index.aspx"
同级目录下file文件中的index.aspx页面
window.loaction.href="../index.aspx"
父级(上级)目录中的index.aspx页面
window.loaction.href="../file/index.aspx"
父级(上级)目录中file文件夹中的index.aspx页面
window.loaction.href="/index.aspx"
根目录下的index.asp页面.
总结:"../"表求上一级目录.如果上二级就是"../../" .
window.loaction.href="index.aspx"
同级目录下的index.aspx页面
window.loaction.href="file/index.aspx"
同级目录下file文件中的index.aspx页面
window.loaction.href="../index.aspx"
父级(上级)目录中的index.aspx页面
window.loaction.href="../file/index.aspx"
父级(上级)目录中file文件夹中的index.aspx页面
window.loaction.href="/index.aspx"
根目录下的index.asp页面.
总结:"../"表求上一级目录.如果上二级就是"../../" .
展开全部
网站的根路径是吧?
<html>
<head>
<script>
function getRootPath(){
var strFullPath=window.location.href;
var path=strFullPath;
path=path.substring(7,path.length);
alert(path);
var index=path.indexOf("/")+7+1;
alert(index);
rootPath=strFullPath.substring(0,index);
//var rootPath=strFullPath.substring(0,index+1);
return rootPath;
}
function showUrl()
{
alert (getRootPath()+"index.aspx");
}
</script>
</head>
<body>
<input type='button'value='test'onclick='showUrl()'/>
</body>
</html>
这个是自己刚刚写的。 (不要把这个文件单独打开,没用。放到服务器下可以实现)。
<html>
<head>
<script>
function getRootPath(){
var strFullPath=window.location.href;
var path=strFullPath;
path=path.substring(7,path.length);
alert(path);
var index=path.indexOf("/")+7+1;
alert(index);
rootPath=strFullPath.substring(0,index);
//var rootPath=strFullPath.substring(0,index+1);
return rootPath;
}
function showUrl()
{
alert (getRootPath()+"index.aspx");
}
</script>
</head>
<body>
<input type='button'value='test'onclick='showUrl()'/>
</body>
</html>
这个是自己刚刚写的。 (不要把这个文件单独打开,没用。放到服务器下可以实现)。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要跳到根目录就用
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询