JS判断是不是为windows文件路径
发布网友
发布时间:2022-05-17 00:06
我来回答
共3个回答
热心网友
时间:2022-05-17 01:35
JS判断是否为windows文件路径的代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"><title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<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 language = "JavaScript">
function isFilePath(value){
/* var re = /apples/gi;
str = "Apples are round, and apples are juicy.";
newstr=str.replace(re, "oranges");
alert(newstr);*/
while (value.split("\\").length > 1) {
value = value.replace("\\", "/");
}
if (value.split(":")[0].length > 1 || value.split("//").length > 1 || value.split(".").length <= 1 || value.split(".")[1] == null || value.split(".")[1] == "" ||
value.split(".")[1].match("/")) {
alert("不符合111");
return null;
}
var regex = /[a-zA-Z]{1}:{1}\/[^\/].+(\/$)?/;
var array = regex.exec(value);
if (array != null) {
alert("符合");
return null;
}
else {
alert("不符合222");
return null;
}
}
</script>
</head>
<body>
<form>
<input type="text" value="" id="temp" name="temp"/>
<br>
<input type="button" value="test" onclick="isFilePath(temp.value);"/>
</form>
</body>
</html>
热心网友
时间:2022-05-17 02:53
1、从桌面打开计算机。
2、点击工具,选择文件夹选项。
3、从弹出的选项卡里面,点击查看,然后就看到了下面一系列高级设置。
4、下来滚动条,看到如下图的有一个选项。隐藏已知文件类型的扩展名。把前面的勾去掉,然后确定。看看你的硬盘文件夹里面文件名称是不是加了类型的后缀。