You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//扩展一下Jquery,支持计入Url中的参数
|
|
|
|
|
(function ($) {
|
|
|
|
|
$.getUrlParam = function (name) {
|
|
|
|
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
|
|
|
|
|
var r = window.location.search.substr(1).match(reg);
|
|
|
|
|
if (r != null) return unescape(r[2]); return null;
|
|
|
|
|
}
|
|
|
|
|
})(jQuery);
|