javascript获取host】的更多相关文章

document.writeln(location.protocol); document.writeln(location.origin); //包括端口号 document.writeln(location.host); //不包括端口号 document.writeln(location.port);         //默认为80的就为空 document.writeln(location.pathname);   <a href="<%=location.origin%&g…
JavaScript获取当前根目录 主要用到Location 对象,包含有关当前 URL 的信息,是 Window 对象的一个部分,可通过 window.location 属性来访问. 方法一 (window.document.location.href/window.document.location.pathname) function getRootPath_web() { //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.js…
Window有navigator对象让我们得知浏览器的全部信息.我们可以利用一系列的API函数得知浏览器的信息. JavaScript代码如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 function message() { txt = "<p>浏览器代码名: " + navigator.appCodeName + "</p>"; txt+= "<p>浏览器名称: " + nav…
<script language="javascript">//获取域名host = window.location.host;host2=document.domain; //获取页面完整地址url = window.location.href;document.write("<br>host="+host)document.write("<br>host2="+host2)document.write(&q…
javascript 获取当前部署项目路径 ========================================= javascript获取当前部署项目路径: 主要用到Location 对象,包含有关当前 URL 的信息,是 Window 对象的一个部分,可通过 window.location 属性来访问. 方法一 (window.document.location.href/window.document.location.pathname) ------------转自网络 fu…
例如地址为:http://www.mazey.net/baby/blog/index.php?a=1&b=2#c var query = window.location.href; //http://www.mazey.net/baby/blog/index.php?a=1&b=2#c var query = window.location.host; //www.mazey.net 1.window.location.href 说明:整个地址栏字符串(在浏览器中就是完整的地址栏) 本例返…
客户端用javascript获取文件大小 1 ie实现代码如下: <script type="text/javascript" language="javascript"> function getFileSize(fileName) { if(document.all)//判断是否是IE浏览器 { window.oldOnError = window.onerror; window.onerror = function(err) { if(err.in…
JavaScript获取客户端计算机硬件及系统等信息的方法 JavaScript 获取客户端计算机硬件及系统信息 通过WMI来实现获取客户端计算机硬件及系统信息: function getSysInfo(){ var locator = new ActiveXObject ("WbemScripting.SWbemLocator"); var service = locator.ConnectServer("."); //CPU信息 var cpu = new En…
有时我们需要在客户端获取链接参数,一个常见的方法是将链接当做字符串,按照链接的格式分解,然后获取对应的参数值.本文给出的就是这个流程的具体实现方法. 当然,我们也可以用正则直接匹配,文章中也给出了一个正则的例子. 分解链接的方式: <script type="text/javascript"> <!-- // 说明:Javascript 获取链接(url)参数的方法 // 整理:http://www.CodeBit.cn function getQueryString…
从网上找到一段使用JavaScript判断浏览器以及浏览器版本的比较好的代码,在此记录一下: <script type="text/javascript"> var Sys = {}; var ua = navigator.userAgent.toLowerCase(); var s; (s = ua.match(/msie ([\d.]+)/)) ? Sys.ie = s[1] : (s = ua.match(/firefox\/([\d.]+)/)) ? Sys.fir…