星期六, 10月 01, 2011

javascript/jquery剖析網址 - parseUri(parseUrl)

這個parseUri是我修改Steven Levithan而成的

為了看起來整齊點,我將parseUri包在jquery下
不過其實並沒有用到jquery的東西,大家覺得用不順手可以自己改改


/**
* $.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);
view raw gistfile1.js hosted with ❤ by GitHub

javascript中使用print_r

有用過print_r的php開發者都知道他的好用XD
這邊實現了js的print_r : http://phpjs.org/functions/print_r:493

其實這個網站(http://phpjs.org/functions/index)也有很多其他的函式
有興趣可以晃晃!