js获取当前页面路径示例讲解

 本篇文章主要是对js获取当前页面路径的示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助

设置或获取对象指定的“文件名”或路径。
<script>
alert(window.location.pathname)
</script>
 
设置或获取整个 URL 为字符串。
<script>
alert(window.location.href); 
</script>
 
设置或获取与 URL 关联的端口号码。
<script>
alert(window.location.port)
</script>
 
设置或获取 URL 的协议部分。
<script>
alert(window.location.protocol)
</script>
 
设置或获取 href 属性中在井号“#”后面的分段。
<script>
alert(window.location.hash)
</script>
 
设置或获取 location 或 URL 的 hostname 和 port 号码。
<script>
alert(window.location.host)
</script>
 
设置或获取 href 属性中跟在问号后面的部分。
<script>
alert(window.location.search)
</script>
 
网页刷新推荐-JS
<input type=button value=刷新 onclick="history.go(0)">
<input type=button value=刷新 onclick="location.reload()">
<input type=button value=刷新 onclick="location=location">
<input type=button value=刷新 onclick="location.assign(location)">
<input type=button value=刷新 onclick="document.execCommand('Refresh')">
<input type=button value=刷新 onclick="window.navigate(location)">
<input type=button value=刷新 onclick="location.replace(location)">
<input type=button value=刷新 onclick="document.URL=location.href">
 

时间: 2024-09-24 02:33:55

js获取当前页面路径示例讲解的相关文章

js获取当前页面路径示例讲解_javascript技巧

设置或获取对象指定的"文件名"或路径.<script>alert(window.location.pathname)</script> 设置或获取整个 URL 为字符串.<script>alert(window.location.href); </script> 设置或获取与 URL 关联的端口号码.<script>alert(window.location.port)</script> 设置或获取 URL 的协议

jqueryui-关于前端JQ或JS获取别的页面传来的参数问题。

问题描述 关于前端JQ或JS获取别的页面传来的参数问题. 页面A向页面B 传递参数,可是页面A传递是用JQ的 ajax的Get请求,提交的参数没有在浏览器里面,例如?XXX=A&XXX=C这样子, ,所以页面B就不能用 var URL = document.location.toString(); 这样来获取了 求页面B该 怎么样写才能获取 ? 解决方案 首先你要明确一点, web 中两个页面的独立性是非常大的,里面的代码在两个独立的环境中解析运行,Chrome就干脆一个tab一个进程(基本上就

js获取当前地址 JS获取当前URL的示例代码

 本篇文章主要是对js获取当前地址 JS获取当前URL的示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助  代码如下: <table width=100% cellpadding=0 cellspacing=0 border=0 >  <script language="javascript"> thisURL = document.URL;  thisHREF = document.location.href;  thisSLoc = self

javascript-往数据库上传excel表怎样通过js获取文件全路径

问题描述 往数据库上传excel表怎样通过js获取文件全路径 往数据库上传excel表怎样通过js获取文件全路径 function getFullPath(){ var filepath = getPath(document.getElementById("file")); alert(filepath); //var filepath=getPath(obj); function getPath(obj) { if(obj) { //ie if (window.navigator.u

兼容问题- JS获取文件file路径取出图片信息,求兼容浏览器代码谢谢!

问题描述 JS获取文件file路径取出图片信息,求兼容浏览器代码谢谢! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> JS 文件大小及类型判断 *{}{ font-size:12px;} <!-- function ShowInfo(sUrl) { va

JS获取当前页面名称的简单实例_javascript技巧

JS获取当前页面名称的简单实例 // 取当前页面名称(不带后缀名) function pageName() { var a = location.href; var b = a.split("/"); var c = b.slice(b.length-1, b.length).toString(String).split("."); return c.slice(0, 1); } //取当前页面名称(带后缀名) function pageName() { var s

js 获取iframe页面返回给父页面

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-

js 获取本地文件路径后如何上传到Action后台

问题描述 是这样的,因为项目要用到上传文件夹功能,搜了一堆列子,整合了一个js读取本地文件夹并循环遍历子文件或文件夹的功能.现在的问题是,获取到了路径,比如c:/mm/1.jpg,但是仅仅获取到了路径,不懂该怎么把它获取成一个文件对象,上传到java后台Action,请大神们不吝赐教,跪谢! 解决方案 本帖最后由 AriseLee 于 2013-11-13 17:43:29 编辑解决方案二:可以把路径传到后台,后台用java代码获取文件不就行了.解决方案三:可以用Meteor.js.请楼主注意一

js获取.aspx页面里面的服务器控件和.ascx中的服务器控件值_实用技巧

A.aspx页面 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="A.aspx.cs" Inherits="OrderManage_A" %> <%@ Register Src="../UserControl/CtrlCalendar.ascx" TagName="CtrlCalendar&qu