/** * Created by Vincent on 14-8-7. */ /** * * 获得URL参数 */ function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null)return unescape(r[2]); return null; } //iframe获取url指定参数 function GetParentQueryString(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = parent.location.search.substr(1).match(reg); if(r!=null)return unescape(r[2]); return null; } /** * 关闭ajax产生的缓存 */ $.ajaxSetup({ cache : false // 关闭AJAX相应的缓存 }); /** * 弹出警告框 * * @param mes * @constructor */ function Edialog(mes) { $("body").eq(0).css("overflow", "hidden"); var height = $(document).height(); var width = $(document).width(); $(document.body).append('
'); $('#bg').css({ position : "absolute", "z-index" : 9998, left : 0, top : 0, zoom : 1, "height" : height, "width" : width, "filters" : "alpha(opacity=50)", "background" : "#212121", "opacity" : 0 }); $(document.body).append( '' + mes + '