mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-06 13:48:01 +08:00
16 lines
583 B
JavaScript
16 lines
583 B
JavaScript
// ***********************************************************************
|
|
// Assembly : OpenAuth.Mvc
|
|
// Author : yubaolee
|
|
// Created : 04-20-2016
|
|
//
|
|
// Last Modified By : yubaolee
|
|
// Last Modified On : 04-20-2016
|
|
// Contact : www.cnblogs.com/yubaolee
|
|
// File: util.js
|
|
// ***********************************************************************
|
|
|
|
|
|
//获取URL参数
|
|
function getURLParameter(name) {
|
|
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [, ""])[1].replace(/\+/g, '%20')) || null;
|
|
} |