1234567891011121314151617181920212223242526272829303132 |
- var apiRootPath = "http://test.leyu.hdlkeji.com/fastadmin/public/index.php/";
- var imgurl = "http://test.leyu.hdlkeji.com";
- //得到参数
- function getQueryString(name) {
- var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
- var r = window.location.search.substr(1).match(reg);
- if (r != null)
- return unescape(r[2]);
- return null;
- }
- //判断空
- function isNull(str)
- {
- if(str==null||str==undefined||str==""){
- //处理
- return true;
- }
- else
- {
- //处理
- return false;
- }
-
- }
|