/* * @function: 通过a标签解析url标签 * @param:url url参数是字符串,解析的目标 通过IE6-9 chrome Firefox测试 * */ function parseURL(url) { //创建一个a标签 var a = document.createElement('a'); //将url赋值给标签的href属性. a.href = url; return { source: url, protocol: a.protocol.replace(':','…
很多时候,我们有从 url 中提取域名,查询关键字,变量参数值等的需求,然而我们可以让浏览器方便地帮助我们完成这一任务而不用写正则去抓取.方法就是先创建一个 a 标签然后将需要解析的 url 赋值给 a 的 href 属性,然后就得到了一切我们想要的了. var a = document.createElement('a'); a.href = 'http://zhuyujia.github.io/?a=1&b=2'; console.log(a.host); // zhuyujia.githu…
很多时候,我们有从 url 中提取域名,查询关键字,变量参数值等的需求,然而我们可以让浏览器方便地帮助我们完成这一任务而不用写正则去抓取.方法就是先创建一个 a 标签然后将需要解析的 url 赋值给 a 的 href 属性,然后就得到了一切我们想要的了. var a = document.createElement('a'); a.href = 'http://zhuyujia.github.io/?a=1&b=2'; console.log(a.host); // zhuyujia.githu…
parseURL // This function creates a new anchor element and uses location // properties (inherent) to get the desired URL data. Some String // operations are used (to normalize results across browsers). function parseURL(url) { var a = document.create…
我们可能都知道javascript中的window.location对象用来获取当前页面的地址URL,并把浏览器重定向到新的页面.它有protocol.hostname.host.port.search.hash.href.pathname等属性 比如: window.location.href返回的是当前页面的整个URL window.location.hostname返回的是web主机的域名 window.location.pathname返回的是当前页面的路径和文件名 还有一个window…
利用strut2标签自动生成form前端验证代码,使用到的技术有1.struts2标签,如<s:form> <s:textfieled>2.struts2读取*Validation.xml文件(*为Action名字),org.apache.struts2.components.Form.findFieldValidators(String name, Class actionClass, String actionName, List<Validator> valida…
首先我们看看实例 a.href = 'http://www.cnblogs.com/wayou/p/'; console.log(a.host); 控制台会输出 "www.cnblogs.com" 所以我们可以利用此特性进行拓展,制作一个更加健壮的解析器. 在此先介绍Location 对象(即url)属性: 属性 描述 hash 设置或返回从井号 (#) 开始的 URL(锚). host 设置或返回主机名和当前 URL 的端口号. hostname 设置或返回当前 URL 的主机名.…
function parseURL(url) { var a = document.createElement('a'); a.href = url; return { source: url, protocol: a.protocol.replace(':',''), host: a.hostname, port: a.port, query: a.search, params: (function(){ var ret = {}, seg = a.search.replace(/^\?/,'…
一.天生我材必有用 给http字符自动添加URL链接是比较常见的一项功能.举两个我最近常用到的自动检测http://地址并添加链接的例子吧,首先是QQ邮箱,在使用QQ邮箱时,如果输入了URL地址(http://或是https://开头),则QQ邮箱会自动给这个地址添加可打开的链接.如下图所示: 还有就是微博客产品,例如twitter(zxx://FQ可以follow苍井空姐姐哦~~ ^_^),或是国产的新浪微博.当您的微博信息中有类似于http://www.zhangxinxu.com/的URL…
2018-11-7 20:41:20 星期三 1. 解析URL function parseUrl(url){ url = decodeURIComponent(url); var u = url.split('?'); var query = u[1]; var args = {}; var items = query.split("&"); var item = null, name = null, value = null; for(var i=0; i < ite…