commonHttp.js 497 B

1234567891011121314151617181920212223242526272829303132
  1. var apiRootPath = "http://test.leyu.hdlkeji.com/fastadmin/public/index.php/";
  2. var imgurl = "http://test.leyu.hdlkeji.com";
  3. //得到参数
  4. function getQueryString(name) {
  5. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  6. var r = window.location.search.substr(1).match(reg);
  7. if (r != null)
  8. return unescape(r[2]);
  9. return null;
  10. }
  11. //判断空
  12. function isNull(str)
  13. {
  14. if(str==null||str==undefined||str==""){
  15. //处理
  16. return true;
  17. }
  18. else
  19. {
  20. //处理
  21. return false;
  22. }
  23. }