為了看起來整齊點,我將parseUri包在jquery下
不過其實並沒有用到jquery的東西,大家覺得用不順手可以自己改改
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* $.parseUri | |
* HondaDai / http://coazure-code.blogspot.com | |
* Modify by parseUri 1.2.2 (http://blog.stevenlevithan.com/archives/parseuri) / Author:(c) Steven Levithan <stevenlevithan.com> | |
* | |
* Example: | |
* $.parseUri(location.href); | |
* | |
* MIT License | |
*/ | |
(function($){ | |
$.parseUri = function (str, mode) { | |
var o = { | |
strictMode: mode === true, | |
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"], | |
q: { | |
name: "queryKey", | |
parser: /(?:^|&)([^&=]*)=?([^&]*)/g | |
}, | |
parser: { | |
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, | |
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ | |
} | |
}; | |
var m = o.parser[o.strictMode ? "strict" : "loose"].exec(str); | |
var uri = {}; | |
var i = 14; | |
while (i--) uri[o.key[i]] = m[i] || ""; | |
uri[o.q.name] = {}; | |
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { | |
if ($1) uri[o.q.name][$1] = $2; | |
}); | |
if(uri.anchor != "") { | |
var anchor = $.parseUri(uri.anchor, o.strictMode); | |
uri.anchorBase = anchor.host; | |
uri.anchorQuery = anchor.query; | |
uri.anchorQueryKey = anchor.queryKey; | |
} | |
return uri; | |
}; | |
})(jQuery); | |