util.js 270 B

12345678910
  1. define({
  2. getParmas: function (params) {
  3. var reg = new RegExp('(^|&)' + params + '=([^&]*)(&|$)');
  4. var obj = window.location.search.substr(1).match(reg);
  5. if (obj) {
  6. return decodeURI(obj[2]);
  7. }
  8. return null;
  9. }
  10. });