JavaScript获取路径设计源码
时间:2024-07-27 11:04:00
1、设计源码
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>JavaScript获取路径</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<script type="text/javascript">
function findPath()
{
//获取当前网址
var curNetAddr = window.document.location.href;
alert("获取当前网址:" + curNetAddr);
//获取主机地址之后的目录
var hostPath = window.document.location.pathname;
alert("获取主机地址之后的目录:" + hostPath);
//返回某个指定的字符串值在字符串中首次出现的位置
var count = curNetAddr.indexOf(hostPath);
alert("返回某个指定的字符串值在字符串中首次出现的位置:" + count);
//获取主机地址
var hostAddr = curNetAddr.substring(0,count);
alert("获取主机地址:" + hostAddr);
//获取带“/”的项目名
var projectName = hostPath.substring(0,hostPath.substr(1).indexOf('/')+1);
alert("获取带“/”的项目名:" + projectName);
//获取项目路径
var path = hostAddr + projectName;
alert("获取项目路径:" + path);
}
</script>
</head>
<body>
<div id="body_div">
<input type="button" id="btn" value="获取路径" onclick="findPath()"/>
</div>
</body>
</html>
2、设计结果
(1)初始化时
(2)获取当前网址
(3)获取主机地址之后的目录
(4)返回某个指定的字符串值在字符串中首次出现的位置
(5)获取主机地址
(6)获取带“/”的项目名
(7)获取项目路径
标签:获取路径
0
投稿
猜你喜欢
教你如何在SQL Server数据库中加密数据
2009-09-10 14:49:00
用Python写飞机大战游戏之pygame入门(4):获取鼠标的位置及运动
2023-09-28 11:01:21
怎样在MySQL数据库中导出整个数据库
2008-12-31 15:13:00
Css 清除浮动
2008-09-15 18:47:00
引起用户注意的界面方式
2007-10-07 21:17:00
JavaScript变量中var,let和const的区别
2024-05-09 15:07:24
如何远程使用服务器上的Jupyter notebook
2023-02-08 10:45:54
使用Python写一个量化股票提醒系统
2022-04-19 14:35:42
简单的Python2.7编程初学经验总结
2021-03-18 01:27:11
python装饰器与递归算法详解
2022-11-03 17:05:09
pandas基础 Series与Dataframe与numpy对二进制文件输入输出
2023-10-18 08:20:13
对Python3使运行暂停的方法详解
2021-02-05 22:55:21
常见的jQuery选择器汇总
2024-04-22 22:21:35
终端能到import模块 解决jupyter notebook无法导入的问题
2022-11-19 19:26:29
在ASP.NET2.0通过SMTP的验证发送EMAIL
2007-09-23 12:29:00
BatchNorm2d原理、作用及pytorch中BatchNorm2d函数的参数使用
2021-05-28 10:07:19
10行Python代码实现Web自动化管控的示例代码
2021-05-30 17:01:05
python妹子图简单爬虫实例
2022-12-11 05:47:50
Python判断文本中消息重复次数的方法
2022-11-12 10:00:54
SQL Server 2000/2005/2008删除或压缩数据库日志的方法
2024-01-20 15:56:15