当前位置:主页 > 查看内容

PMP 结合代码报名经验总结

发布时间:2021-06-25 00:00| 位朋友查看

简介:PMP 结合代码报名经验总结 1.注意事项 2.开始报名 2.1登录 2.2登录成功 2.3 承诺书 2.4 确认承诺书 2.5 确认个人资料 2.6 填写报名信息 2.7 完成报名错误提示应对 2.8 在F12 的network 中查看状态 2.9 确认报名成功 3.关键代码 3.1登录时在 console中使用的……

1.注意事项

  • 一定要使用 Chrome 浏览器,一定要使用 Chrome 浏览器,一定要使用 Chrome 浏览器,
  • 多打开一些 tab,多打开一些 tab,多打开一些 tab,多打开一些 tab,多打开一些 tab,
  • 如果你感觉没有用,请不要放弃,因为这是一次非寻常的报名体验,可以骂娘!!!
  • 打开 console 观看提示,及时补入代码干预。

2.开始报名

2.1登录

http://exam.chinapmp.cn/,我打开了 5 个 tab,只有一个 tab 有加载出来的迹象。
在这里插入图片描述
记得把代码放入到console中,一定要按回车后,再点击那个空白按钮,这样多尝试几次
代码在文末的登录代码中拿去直接使用。

在这里插入图片描述

2.2登录成功

登录成功后,会有一个显示用户信息的界面
在这里插入图片描述

2.3 承诺书

直接另开tab打开防疫协议界面http://user.chinapmp.cn/examsign;info.shtml
一定要多打开几个 tab,开个三五个,总有一个会加载出来的,不要着急,慢慢等待
要有倒计时,才算是加载成功的,等计时结束点击确认
在这里插入图片描述

2.4 确认承诺书

如果点击我已阅读同意签署,没有反映,或者报错 提示找不到User或者Examsign

提示找不到User或者Examsign 把代码加入到 console 中,回车
代码在文末的User或者Examsign对应代码中拿去直接使用。
在这里插入图片描述

2.5 确认个人资料

我已阅读同意签署,确认个人资料
在这里插入图片描述

2.6 填写报名信息

填写报名信息
如果上面的下一步没有反映,
直接在新的tab 打开http://user.chinapmp.cn/examsign;sign.shtml 填写报名信息
在这里插入图片描述

2.7 完成报名错误提示应对

如果过程中有提示找不到User或者Examsign一定要在console中输入对应代码脚本,回车后,再按“完成报名按钮”
在这里插入图片描述

2.8 在F12 的network 中查看状态

在 network 中,可以查看提交状态,我是提交了第十三次时,才显示报名成功。
在这里插入图片描述

2.9 确认报名成功

报名成功后查看
在这里插入图片描述

3.关键代码

3.1登录时在 console中使用的代码

这些代码,要在F12后在console中输入并回车后,再继续操作

/*
* *********************************************************
* UNEXT.AjaxScript
* Copyright (C) 2010 Wang Zhuo (http://ajax.unext.net).
* All rights reserved.
* Email : wz@unext.net
* *********************************************************
*/
if (typeof NET == "undefined") NET = {};
if (typeof NET.UNEXT == "undefined") NET.UNEXT = {};
if (typeof NET.UNEXT.extend == "undefined") NET.UNEXT.extend = function(a, b, c) { for (var d in b) { if (c == false && a[d] != null) { continue } a[d] = b[d] } return a; };
NET.UNEXT.extend(Function.prototype, { apply: function(o, a) { var r, x = "__fapply"; if (typeof o != "NET.UNEXT") { o = {} } o[x] = this; var s = "r = o." + x + "("; for (var i = 0; i < a.length; i++) { if (i > 0) { s += "," } s += "a[" + i + "]" } s += ");"; eval(s); delete o[x]; return r }, bind: function(o) { if (!Function.__objs) { Function.__objs = []; Function.__funcs = [] } var a = o.__oid; if (!a) { Function.__objs[a = o.__oid = Function.__objs.length] = o } var b = this; var c = b.__fid; if (!c) { Function.__funcs[c = b.__fid = Function.__funcs.length] = b } if (!o.__closures) { o.__closures = [] } var d = o.__closures[c]; if (d) { return d } o = null; b = null; return Function.__objs[a].__closures[c] = function() { return Function.__funcs[c].apply(Function.__objs[a], arguments) } } }, false);
NET.UNEXT.extend(Array.prototype, { push: function(o) { this[this.length] = o }, addRange: function(a) { if (a.length > 0) { for (var i = 0; i < a.length; i++) { this.push(a[i]) } } }, clear: function() { this.length = 0; return this }, shift: function() { if (this.length == 0) { return null } var o = this[0]; for (var i = 0; i < this.length - 1; i++) { this[i] = this[i + 1] } this.length--; return o } }, false);
NET.UNEXT.extend(String.prototype, { trimLeft: function() { return this.replace(/^\s*/, "") }, trimRight: function() { return this.replace(/\s*$/, "") }, trim: function() { return this.trimRight().trimLeft() }, endsWith: function(s) { if (this.length == 0 || this.length < s.length) { return false } return (this.substr(this.length - s.length) == s) }, startsWith: function(s) { if (this.length == 0 || this.length < s.length) { return false } return (this.substr(0, s.length) == s) }, split: function(c) { var a = []; if (this.length == 0) return a; var p = 0; for (var i = 0; i < this.length; i++) { if (this.charAt(i) == c) { a.push(this.substring(p, i)); p = ++i } } a.push(s.substr(p)); return a } }, false);
NET.UNEXT.extend(String, { format: function(s) { for (var i = 1; i < arguments.length; i++) { s = s.replace("{" + (i - 1) + "}", arguments[i]) } return s }, isNullOrEmpty: function(s) { if (s == null || s.length == 0) { return true } return false } }, false);
if (typeof NET.UNEXT.addEvent == "undefined") { NET.UNEXT.addEvent = function(o, a, f, b) { if (o == null) { return false } if (o.addEventListener) { o.addEventListener(a, f, b); return true } else if (o.attachEvent) { var r = o.attachEvent("on" + a, f); return r } else { try { o["on" + a] = f } catch (e) { } } } }
if (typeof NET.UNEXT.removeEvent == "undefined") { NET.UNEXT.removeEvent = function(o, a, f, b) { if (o == null) { return false } if (o.removeEventListener) { o.removeEventListener(a, f, b); return true } else if (o.detachEvent) { o.detachEvent("on" + a, f) } else { try { o["on" + a] = function() { } } catch (e) { } } } }
NET.UNEXT.extend(Function.prototype, { getArguments: function() { var a = []; for (var i = 0; i < this.arguments.length; i++) { a.push(this.arguments[i]) } return a } }, false);
var MS = { "Browser": {} };
NET.UNEXT.extend(MS.Browser, { isIE: navigator.userAgent.indexOf('MSIE') != -1, isFirefox: navigator.userAgent.indexOf('Firefox') != -1, isOpera: window.opera != null }, false);
if (typeof NET.UNEXT.Ajax == "undefined") NET.UNEXT.Ajax = {};
NET.UNEXT.Ajax.IFrameXmlHttp = function() { };
NET.UNEXT.Ajax.IFrameXmlHttp.prototype = { onreadystatechange: null, headers: [], method: "POST", url: null, async: true, iframe: null, status: 0, readyState: 0, responseText: null, abort: function() { }, readystatechanged: function() { var a = this.iframe.contentDocument || this.iframe.document; if (a != null && a.readyState == "complete" && a.body != null && a.body.res != null) { this.status = 200; this.statusText = "OK"; this.readyState = 4; this.responseText = a.body.res; this.onreadystatechange(); return } setTimeout(this.readystatechanged.bind(this), 10) }, open: function(a, b, c) { if (c == false) { alert("Synchronous call using IFrameXMLHttp is not supported."); return } if (this.iframe == null) { var d = "hans"; if (document.createElement && document.documentElement && (window.opera || navigator.userAgent.indexOf('MSIE 5.0') == -1)) { var e = document.createElement('iframe'); e.setAttribute('id', d); e.style.visibility = 'hidden'; e.style.position = 'absolute'; e.style.width = e.style.height = e.borderWidth = '0px'; this.iframe = document.getElementsByTagName('body')[0].appendChild(e) } else if (document.body && document.body.insertAdjacentHTML) { document.body.insertAdjacentHTML('beforeEnd', '<iframe name="' + d + '" id="' + d + '" style="border:1px solid black;display:none"></iframe>') } if (window.frames && window.frames[d]) { this.iframe = window.frames[d] } this.iframe.name = d; this.iframe.document.open(); this.iframe.document.write("<" + "html><" + "body></" + "body></" + "html>"); this.iframe.document.close() } this.method = a; this.url = b; this.async = c }, setRequestHeader: function(a, b) { for (var i = 0; i < this.headers.length; i++) { if (this.headers[i].name == a) { this.headers[i].value = b; return } } this.headers.push({ "name": a, "value": b }) }, getResponseHeader: function(a, b) { return null }, addInput: function(a, b, c, d) { var e; var f = "input"; if (d.indexOf("\n") >= 0) { f = "textarea" } if (a.all) { e = a.createElement("<" + f + " name=\"" + c + "\" />") } else { e = a.createElement(f); e.setAttribute("name", c) } e.setAttribute("value", d); b.appendChild(e); e = null }, send: function(a) { if (this.iframe == null) { return } var b = this.iframe.contentDocument || this.iframe.document; var c = b.createElement("form"); b.body.appendChild(c); c.setAttribute("action", this.url); c.setAttribute("method", this.method); c.setAttribute("enctype", "application/x-www-form-urlencoded"); for (var i = 0; i < this.headers.length; i++) { switch (this.headers[i].name.toLowerCase()) { case "content-length": case "accept-encoding": case "content-type": break; default: this.addInput(b, c, this.headers[i].name, this.headers[i].value) } } this.addInput(b, c, "NET_UNEXT_Ajax_Data", a); c.submit(); setTimeout(this.readystatechanged.bind(this), 0) } };
var progids = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"];
var progid = null;
if (typeof ActiveXObject != "undefined") { var ie7xmlhttp = false; if (typeof XMLHttpRequest == "object") { try { var o = new XMLHttpRequest(); ie7xmlhttp = true } catch (e) { } } if (typeof XMLHttpRequest == "undefined" || !ie7xmlhttp) { XMLHttpRequest = function() { var a = null; if (!NET.UNEXT.Ajax.noActiveX) { if (progid != null) { return new ActiveXObject(progid) } for (var i = 0; i < progids.length && a == null; i++) { try { a = new ActiveXObject(progids[i]); progid = progids[i] } catch (e) { } } } if (a == null && MS.Browser.isIE) { return new NET.UNEXT.Ajax.IFrameXmlHttp() } return a } } }
NET.UNEXT.extend(NET.UNEXT.Ajax, { noOperation: function() { }, onLoading: function() { }, onError: function() { }, onTimeout: function() { return true }, onStateChanged: function() { }, cryptProvider: null, queue: null, token: "", version: "10.6.0.11", ID: "UNEXT.Ajax", noActiveX: false, timeoutPeriod: 60 * 60 * 1000, queue: null, UtcOffset: "+0800", noUtcTime: false, regExDate: function(a, b, c, d, s) { a = a.substring(1).replace('"', ''); var e = a; if (a.substring(0, 7) == "\\\/Date(") { a = a.match(/Date\((.*?)\)/)[1]; e = "new Date(" + parseInt(a) + ")" } else { var f = a.split(/[-,:,T,Z]/); f[1] = (parseInt(f[1], 0) - 1).toString(); e = "new Date(Date.UTC(" + f.join(",") + "))" } return e }, parse: function(a) { var b = /(\"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}.*?\")|(\"\\\/Date\(.*?\)\\\/")/g; a = a.replace(b, this.regExDate); return eval('(' + a + ')') }, m: { '\b': '\\b', '\t': '\\t', '\n': '\\n', '\f': '\\f', '\r': '\\r', '"': '\\"', '\\': '\\\\' }, toJSON: function(o) { if (o == null) { return "null" } var v = []; var i; var c = o.constructor; if (c == Number) { return isFinite(o) ? o.toString() : NET.UNEXT.Ajax.toJSON(null) } else if (c == Boolean) { return o.toString() } else if (c == String) { if (/["\\\x00-\x1f]/.test(o)) { o = o.replace(/([\x00-\x1f\\"])/g, function(a, b) { var c = NET.UNEXT.Ajax.m[b]; if (c) { return c } c = b.charCodeAt(); return '\\u00' + Math.floor(c / 16).toString(16) + (c % 16).toString(16) }) } return '"' + o + '"' } else if (c == Array) { for (i = 0; i < o.length; i++) { v.push(NET.UNEXT.Ajax.toJSON(o[i])) } return "[" + v.join(",") + "]" } else if (c == Date) { return NET.UNEXT.Ajax.toJSON("/Date(" + new Date(Date.UTC(o.getUTCFullYear(), o.getUTCMonth(), o.getUTCDate(), o.getUTCHours(), o.getUTCMinutes(), o.getUTCSeconds(), o.getUTCMilliseconds())).getTime() + NET.UNEXT.Ajax.UtcOffset + ")/") } if (typeof o.toJSON == "function") { return o.toJSON() } if (typeof o == "object") { for (var d in o) { if (typeof o[d] != "function") { v.push('{"Name":"' + d + '","Value":' + NET.UNEXT.Ajax.toJSON(o[d]) + "}") } } if (v.length > 0) { return "{\"JSON_DATA\":[" + v.join(",") + "]}" } return "{\"JSON_DATA\":[]}" } return o.toString() }, dispose: function() { if (NET.UNEXT.Ajax.queue != null) { NET.UNEXT.Ajax.queue.dispose() } } }, false);
NET.UNEXT.addEvent(window, "unload", NET.UNEXT.Ajax.dispose);
NET.UNEXT.Ajax.Request = function(a) { this.url = a; this.xmlHttp = null };
NET.UNEXT.Ajax.Request.prototype = { url: null, callback: null, onLoading: null, onError: null, onTimeout: null, onStateChanged: null, args: null, context: null, isRunning: false, abort: function() { if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } if (this.xmlHttp) { this.xmlHttp.onreadystatechange = NET.UNEXT.Ajax.noOperation; this.xmlHttp.abort() } if (this.isRunning) { this.isRunning = false; this.onLoading(false) } }, dispose: function() { this.abort() }, getEmptyRes: function() { return { error: null, value: null, request: { method: this.method, args: this.args }, context: this.context, duration: this.duration} }, endRequest: function(a) { this.abort(); if (a.error != null) { this.onError(a.error, this) } if (typeof this.callback == "function") { this.callback(a, this) } }, mozerror: function() { if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } var a = this.getEmptyRes(); a.error = { Message: "Unknown", Type: "ConnectFailure", Status: 0 }; this.endRequest(a) }, doStateChange: function() { this.onStateChanged(this.xmlHttp.readyState, this); if (this.xmlHttp.readyState != 4 || !this.isRunning) { return } this.duration = new Date().getTime() - this.__start; if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } var a = this.getEmptyRes(); if (this.xmlHttp.status == 200 && this.xmlHttp.statusText == "OK") { a = this.createResponse(a) } else { a = this.createResponse(a, true); a.error = { Message: this.xmlHttp.statusText, Type: "ConnectFailure", Status: this.xmlHttp.status} } this.endRequest(a) }, createResponse: function(r, a) { if (!a) { if (typeof (this.xmlHttp.responseText) == "unknown") { r.error = { Message: "XmlHttpRequest error reading property responseText.", Type: "XmlHttpRequestException" }; return r } var b = "" + this.xmlHttp.responseText; if (NET.UNEXT.Ajax.cryptProvider != null && typeof NET.UNEXT.Ajax.cryptProvider.decrypt == "function") { b = NET.UNEXT.Ajax.cryptProvider.decrypt(b) } if (this.xmlHttp.getResponseHeader("Content-Type") == "text/xml") { r.value = this.xmlHttp.responseXML } else { if (b != null && b.trim().length > 0) { r.json = b; var v = null; v = NET.UNEXT.Ajax.parse(b); if (v != null) { if (typeof v.value != "undefined") r.value = v.value; else if (typeof v.error != "undefined") r.error = v.error } } } } return r }, timeout: function() { this.duration = new Date().getTime() - this.__start; try { if (this.onTimeout != null && typeof (this.onTimeout) != "undefined" && this.onTimeout) { var r = this.onTimeout(this.duration, this); if (typeof r == "undefined" || r != false) { this.abort() } else { this.timeoutTimer = setTimeout(this.timeout.bind(this), NET.UNEXT.Ajax.timeoutPeriod) } } } catch (e) { } finally { } }, invoke: function(a, b, c, d) { this.__start = new Date().getTime(); this.xmlHttp = new XMLHttpRequest(); this.isRunning = true; this.method = a; this.args = b; this.callback = c; this.context = d; var f = typeof (c) == "function" && c != NET.UNEXT.Ajax.noOperation; if (f) { if (MS.Browser.isIE) { this.xmlHttp.onreadystatechange = this.doStateChange.bind(this) } else { this.xmlHttp.onload = this.doStateChange.bind(this); this.xmlHttp.onerror = this.mozerror.bind(this) } this.onLoading(true) } var g = NET.UNEXT.Ajax.toJSON(b) + ""; if (NET.UNEXT.Ajax.cryptProvider != null && typeof NET.UNEXT.Ajax.cryptProvider.encrypt == "function") { g = NET.UNEXT.Ajax.cryptProvider.encrypt(g) } this.xmlHttp.open("POST", this.url, f); this.xmlHttp.setRequestHeader("Content-Type", "text/plain; charset=utf-8"); this.xmlHttp.setRequestHeader("X-" + NET.UNEXT.Ajax.ID + "-Method", a); if (NET.UNEXT.Ajax.token != null && NET.UNEXT.Ajax.token.length > 0) { this.xmlHttp.setRequestHeader("X-" + NET.UNEXT.Ajax.ID + "-Token", NET.UNEXT.Ajax.token) } this.timeoutTimer = setTimeout(this.timeout.bind(this), NET.UNEXT.Ajax.timeoutPeriod); try { this.xmlHttp.send(g) } catch (e) { } if (!f) { return this.createResponse({ error: null, value: null }) } return true } };
NET.UNEXT.Ajax.RequestQueue = function(b) { this.queue = []; this.requests = []; this.timer = null; if (isNaN(b)) { b = 2 } for (var i = 0; i < b; i++) { this.requests[i] = new NET.UNEXT.Ajax.Request(); this.requests[i].callback = function(a) { var r = a.context; a.context = r[3][1]; r[3][0](a, this) }; this.requests[i].callbackHandle = this.requests[i].callback.bind(this.requests[i]) } this.processHandle = this.process.bind(this) };
NET.UNEXT.Ajax.RequestQueue.prototype = { process: function() { this.timer = null; if (this.queue.length == 0) { return } for (var i = 0; i < this.requests.length && this.queue.length > 0; i++) { if (this.requests[i].isRunning == false) { var r = this.queue.shift(); this.requests[i].url = r[0]; this.requests[i].onLoading = r[3].length > 2 && r[3][2] != null && typeof r[3][2] == "function" ? r[3][2] : NET.UNEXT.Ajax.onLoading; this.requests[i].onError = r[3].length > 3 && r[3][3] != null && typeof r[3][3] == "function" ? r[3][3] : NET.UNEXT.Ajax.onError; this.requests[i].onTimeout = r[3].length > 4 && r[3][4] != null && typeof r[3][4] == "function" ? r[3][4] : NET.UNEXT.Ajax.onTimeout; this.requests[i].onStateChanged = r[3].length > 5 && r[3][5] != null && typeof r[3][5] == "function" ? r[3][5] : NET.UNEXT.Ajax.onStateChanged; this.requests[i].invoke(r[1], r[2], this.requests[i].callbackHandle, r); r = null } } if (this.queue.length > 0 && this.timer == null) { this.timer = setTimeout(this.processHandle, 0) } }, add: function(a, b, c, e) { this.queue.push([a, b, c, e]); if (this.timer == null) { this.timer = setTimeout(this.processHandle, 0) } }, abort: function() { this.queue.length = 0; if (this.timer != null) { clearTimeout(this.timer) } this.timer = null; for (var i = 0; i < this.requests.length; i++) { if (this.requests[i].isRunning == true) { this.requests[i].abort() } } }, dispose: function() { for (var i = 0; i < this.requests.length; i++) { var r = this.requests[i]; r.dispose() } this.requests.clear() } };
NET.UNEXT.Ajax.queue = new NET.UNEXT.Ajax.RequestQueue(2);
NET.UNEXT.Ajax.AjaxClass = function(a) { this.url = a };
NET.UNEXT.Ajax.AjaxClass.prototype = { invoke: function(a, b, e) { if (e != null) { if (e.length != 6) { for (; e.length < 6; ) { e.push(null) } } if (e[0] != null && typeof (e[0]) == "function") { return NET.UNEXT.Ajax.queue.add(this.url, a, b, e) } } var r = new NET.UNEXT.Ajax.Request(); r.url = this.url; return r.invoke(a, b) } };
NET.UNEXT.Ajax.token = "1e06545c.8AA616C2CAB680DFDB6C9AFE89CE9199";
NET.UNEXT.Ajax.UtcOffset = "+0800";

if(typeof SHOW == "undefined"){ SHOW={}; }
if(typeof SHOW.Ajax == "undefined"){ SHOW.Ajax={}; }
if(typeof SHOW.Ajax.Exam == "undefined"){ SHOW.Ajax.Exam={}; }
if(typeof SHOW.Ajax.Exam.Login_class == "undefined"){ SHOW.Ajax.Exam.Login_class={}; }
SHOW.Ajax.Exam.Login_class = function() {};
NET.UNEXT.extend(SHOW.Ajax.Exam.Login_class.prototype, NET.UNEXT.extend(new NET.UNEXT.Ajax.AjaxClass(), {
	Save: function(uType, uName, uPass) {
		return this.invoke("Save", {"uType":uType, "uName":uName, "uPass":uPass}, this.Save.getArguments().slice(3));
	},
	url: '/App_Ajax/SHOW.Ajax.Exam.Login,SHOW.Ajax.ajax?domain=exam'
}, false), false);
SHOW.Ajax.Exam.Login = new SHOW.Ajax.Exam.Login_class();

3.2 提交过程中提示找不到User或者Examsign的代码

这些代码,要在F12后在console中输入并回车后,再继续操作

/*
* *********************************************************
* UNEXT.AjaxScript
* Copyright (C) 2010 Wang Zhuo (http://ajax.unext.net).
* All rights reserved.
* Email : wz@unext.net
* *********************************************************
*/
if (typeof NET == "undefined") NET = {};
if (typeof NET.UNEXT == "undefined") NET.UNEXT = {};
if (typeof NET.UNEXT.extend == "undefined") NET.UNEXT.extend = function(a, b, c) { for (var d in b) { if (c == false && a[d] != null) { continue } a[d] = b[d] } return a; };
NET.UNEXT.extend(Function.prototype, { apply: function(o, a) { var r, x = "__fapply"; if (typeof o != "NET.UNEXT") { o = {} } o[x] = this; var s = "r = o." + x + "("; for (var i = 0; i < a.length; i++) { if (i > 0) { s += "," } s += "a[" + i + "]" } s += ");"; eval(s); delete o[x]; return r }, bind: function(o) { if (!Function.__objs) { Function.__objs = []; Function.__funcs = [] } var a = o.__oid; if (!a) { Function.__objs[a = o.__oid = Function.__objs.length] = o } var b = this; var c = b.__fid; if (!c) { Function.__funcs[c = b.__fid = Function.__funcs.length] = b } if (!o.__closures) { o.__closures = [] } var d = o.__closures[c]; if (d) { return d } o = null; b = null; return Function.__objs[a].__closures[c] = function() { return Function.__funcs[c].apply(Function.__objs[a], arguments) } } }, false);
NET.UNEXT.extend(Array.prototype, { push: function(o) { this[this.length] = o }, addRange: function(a) { if (a.length > 0) { for (var i = 0; i < a.length; i++) { this.push(a[i]) } } }, clear: function() { this.length = 0; return this }, shift: function() { if (this.length == 0) { return null } var o = this[0]; for (var i = 0; i < this.length - 1; i++) { this[i] = this[i + 1] } this.length--; return o } }, false);
NET.UNEXT.extend(String.prototype, { trimLeft: function() { return this.replace(/^\s*/, "") }, trimRight: function() { return this.replace(/\s*$/, "") }, trim: function() { return this.trimRight().trimLeft() }, endsWith: function(s) { if (this.length == 0 || this.length < s.length) { return false } return (this.substr(this.length - s.length) == s) }, startsWith: function(s) { if (this.length == 0 || this.length < s.length) { return false } return (this.substr(0, s.length) == s) }, split: function(c) { var a = []; if (this.length == 0) return a; var p = 0; for (var i = 0; i < this.length; i++) { if (this.charAt(i) == c) { a.push(this.substring(p, i)); p = ++i } } a.push(s.substr(p)); return a } }, false);
NET.UNEXT.extend(String, { format: function(s) { for (var i = 1; i < arguments.length; i++) { s = s.replace("{" + (i - 1) + "}", arguments[i]) } return s }, isNullOrEmpty: function(s) { if (s == null || s.length == 0) { return true } return false } }, false);
if (typeof NET.UNEXT.addEvent == "undefined") { NET.UNEXT.addEvent = function(o, a, f, b) { if (o == null) { return false } if (o.addEventListener) { o.addEventListener(a, f, b); return true } else if (o.attachEvent) { var r = o.attachEvent("on" + a, f); return r } else { try { o["on" + a] = f } catch (e) { } } } }
if (typeof NET.UNEXT.removeEvent == "undefined") { NET.UNEXT.removeEvent = function(o, a, f, b) { if (o == null) { return false } if (o.removeEventListener) { o.removeEventListener(a, f, b); return true } else if (o.detachEvent) { o.detachEvent("on" + a, f) } else { try { o["on" + a] = function() { } } catch (e) { } } } }
NET.UNEXT.extend(Function.prototype, { getArguments: function() { var a = []; for (var i = 0; i < this.arguments.length; i++) { a.push(this.arguments[i]) } return a } }, false);
var MS = { "Browser": {} };
NET.UNEXT.extend(MS.Browser, { isIE: navigator.userAgent.indexOf('MSIE') != -1, isFirefox: navigator.userAgent.indexOf('Firefox') != -1, isOpera: window.opera != null }, false);
if (typeof NET.UNEXT.Ajax == "undefined") NET.UNEXT.Ajax = {};
NET.UNEXT.Ajax.IFrameXmlHttp = function() { };
NET.UNEXT.Ajax.IFrameXmlHttp.prototype = { onreadystatechange: null, headers: [], method: "POST", url: null, async: true, iframe: null, status: 0, readyState: 0, responseText: null, abort: function() { }, readystatechanged: function() { var a = this.iframe.contentDocument || this.iframe.document; if (a != null && a.readyState == "complete" && a.body != null && a.body.res != null) { this.status = 200; this.statusText = "OK"; this.readyState = 4; this.responseText = a.body.res; this.onreadystatechange(); return } setTimeout(this.readystatechanged.bind(this), 10) }, open: function(a, b, c) { if (c == false) { alert("Synchronous call using IFrameXMLHttp is not supported."); return } if (this.iframe == null) { var d = "hans"; if (document.createElement && document.documentElement && (window.opera || navigator.userAgent.indexOf('MSIE 5.0') == -1)) { var e = document.createElement('iframe'); e.setAttribute('id', d); e.style.visibility = 'hidden'; e.style.position = 'absolute'; e.style.width = e.style.height = e.borderWidth = '0px'; this.iframe = document.getElementsByTagName('body')[0].appendChild(e) } else if (document.body && document.body.insertAdjacentHTML) { document.body.insertAdjacentHTML('beforeEnd', '<iframe name="' + d + '" id="' + d + '" style="border:1px solid black;display:none"></iframe>') } if (window.frames && window.frames[d]) { this.iframe = window.frames[d] } this.iframe.name = d; this.iframe.document.open(); this.iframe.document.write("<" + "html><" + "body></" + "body></" + "html>"); this.iframe.document.close() } this.method = a; this.url = b; this.async = c }, setRequestHeader: function(a, b) { for (var i = 0; i < this.headers.length; i++) { if (this.headers[i].name == a) { this.headers[i].value = b; return } } this.headers.push({ "name": a, "value": b }) }, getResponseHeader: function(a, b) { return null }, addInput: function(a, b, c, d) { var e; var f = "input"; if (d.indexOf("\n") >= 0) { f = "textarea" } if (a.all) { e = a.createElement("<" + f + " name=\"" + c + "\" />") } else { e = a.createElement(f); e.setAttribute("name", c) } e.setAttribute("value", d); b.appendChild(e); e = null }, send: function(a) { if (this.iframe == null) { return } var b = this.iframe.contentDocument || this.iframe.document; var c = b.createElement("form"); b.body.appendChild(c); c.setAttribute("action", this.url); c.setAttribute("method", this.method); c.setAttribute("enctype", "application/x-www-form-urlencoded"); for (var i = 0; i < this.headers.length; i++) { switch (this.headers[i].name.toLowerCase()) { case "content-length": case "accept-encoding": case "content-type": break; default: this.addInput(b, c, this.headers[i].name, this.headers[i].value) } } this.addInput(b, c, "NET_UNEXT_Ajax_Data", a); c.submit(); setTimeout(this.readystatechanged.bind(this), 0) } };
var progids = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"];
var progid = null;
if (typeof ActiveXObject != "undefined") { var ie7xmlhttp = false; if (typeof XMLHttpRequest == "object") { try { var o = new XMLHttpRequest(); ie7xmlhttp = true } catch (e) { } } if (typeof XMLHttpRequest == "undefined" || !ie7xmlhttp) { XMLHttpRequest = function() { var a = null; if (!NET.UNEXT.Ajax.noActiveX) { if (progid != null) { return new ActiveXObject(progid) } for (var i = 0; i < progids.length && a == null; i++) { try { a = new ActiveXObject(progids[i]); progid = progids[i] } catch (e) { } } } if (a == null && MS.Browser.isIE) { return new NET.UNEXT.Ajax.IFrameXmlHttp() } return a } } }
NET.UNEXT.extend(NET.UNEXT.Ajax, { noOperation: function() { }, onLoading: function() { }, onError: function() { }, onTimeout: function() { return true }, onStateChanged: function() { }, cryptProvider: null, queue: null, token: "", version: "10.6.0.11", ID: "UNEXT.Ajax", noActiveX: false, timeoutPeriod: 60 * 60 * 1000, queue: null, UtcOffset: "+0800", noUtcTime: false, regExDate: function(a, b, c, d, s) { a = a.substring(1).replace('"', ''); var e = a; if (a.substring(0, 7) == "\\\/Date(") { a = a.match(/Date\((.*?)\)/)[1]; e = "new Date(" + parseInt(a) + ")" } else { var f = a.split(/[-,:,T,Z]/); f[1] = (parseInt(f[1], 0) - 1).toString(); e = "new Date(Date.UTC(" + f.join(",") + "))" } return e }, parse: function(a) { var b = /(\"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}.*?\")|(\"\\\/Date\(.*?\)\\\/")/g; a = a.replace(b, this.regExDate); return eval('(' + a + ')') }, m: { '\b': '\\b', '\t': '\\t', '\n': '\\n', '\f': '\\f', '\r': '\\r', '"': '\\"', '\\': '\\\\' }, toJSON: function(o) { if (o == null) { return "null" } var v = []; var i; var c = o.constructor; if (c == Number) { return isFinite(o) ? o.toString() : NET.UNEXT.Ajax.toJSON(null) } else if (c == Boolean) { return o.toString() } else if (c == String) { if (/["\\\x00-\x1f]/.test(o)) { o = o.replace(/([\x00-\x1f\\"])/g, function(a, b) { var c = NET.UNEXT.Ajax.m[b]; if (c) { return c } c = b.charCodeAt(); return '\\u00' + Math.floor(c / 16).toString(16) + (c % 16).toString(16) }) } return '"' + o + '"' } else if (c == Array) { for (i = 0; i < o.length; i++) { v.push(NET.UNEXT.Ajax.toJSON(o[i])) } return "[" + v.join(",") + "]" } else if (c == Date) { return NET.UNEXT.Ajax.toJSON("/Date(" + new Date(Date.UTC(o.getUTCFullYear(), o.getUTCMonth(), o.getUTCDate(), o.getUTCHours(), o.getUTCMinutes(), o.getUTCSeconds(), o.getUTCMilliseconds())).getTime() + NET.UNEXT.Ajax.UtcOffset + ")/") } if (typeof o.toJSON == "function") { return o.toJSON() } if (typeof o == "object") { for (var d in o) { if (typeof o[d] != "function") { v.push('{"Name":"' + d + '","Value":' + NET.UNEXT.Ajax.toJSON(o[d]) + "}") } } if (v.length > 0) { return "{\"JSON_DATA\":[" + v.join(",") + "]}" } return "{\"JSON_DATA\":[]}" } return o.toString() }, dispose: function() { if (NET.UNEXT.Ajax.queue != null) { NET.UNEXT.Ajax.queue.dispose() } } }, false);
NET.UNEXT.addEvent(window, "unload", NET.UNEXT.Ajax.dispose);
NET.UNEXT.Ajax.Request = function(a) { this.url = a; this.xmlHttp = null };
NET.UNEXT.Ajax.Request.prototype = { url: null, callback: null, onLoading: null, onError: null, onTimeout: null, onStateChanged: null, args: null, context: null, isRunning: false, abort: function() { if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } if (this.xmlHttp) { this.xmlHttp.onreadystatechange = NET.UNEXT.Ajax.noOperation; this.xmlHttp.abort() } if (this.isRunning) { this.isRunning = false; this.onLoading(false) } }, dispose: function() { this.abort() }, getEmptyRes: function() { return { error: null, value: null, request: { method: this.method, args: this.args }, context: this.context, duration: this.duration} }, endRequest: function(a) { this.abort(); if (a.error != null) { this.onError(a.error, this) } if (typeof this.callback == "function") { this.callback(a, this) } }, mozerror: function() { if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } var a = this.getEmptyRes(); a.error = { Message: "Unknown", Type: "ConnectFailure", Status: 0 }; this.endRequest(a) }, doStateChange: function() { this.onStateChanged(this.xmlHttp.readyState, this); if (this.xmlHttp.readyState != 4 || !this.isRunning) { return } this.duration = new Date().getTime() - this.__start; if (this.timeoutTimer != null) { clearTimeout(this.timeoutTimer) } var a = this.getEmptyRes(); if (this.xmlHttp.status == 200 && this.xmlHttp.statusText == "OK") { a = this.createResponse(a) } else { a = this.createResponse(a, true); a.error = { Message: this.xmlHttp.statusText, Type: "ConnectFailure", Status: this.xmlHttp.status} } this.endRequest(a) }, createResponse: function(r, a) { if (!a) { if (typeof (this.xmlHttp.responseText) == "unknown") { r.error = { Message: "XmlHttpRequest error reading property responseText.", Type: "XmlHttpRequestException" }; return r } var b = "" + this.xmlHttp.responseText; if (NET.UNEXT.Ajax.cryptProvider != null && typeof NET.UNEXT.Ajax.cryptProvider.decrypt == "function") { b = NET.UNEXT.Ajax.cryptProvider.decrypt(b) } if (this.xmlHttp.getResponseHeader("Content-Type") == "text/xml") { r.value = this.xmlHttp.responseXML } else { if (b != null && b.trim().length > 0) { r.json = b; var v = null; v = NET.UNEXT.Ajax.parse(b); if (v != null) { if (typeof v.value != "undefined") r.value = v.value; else if (typeof v.error != "undefined") r.error = v.error } } } } return r }, timeout: function() { this.duration = new Date().getTime() - this.__start; try { if (this.onTimeout != null && typeof (this.onTimeout) != "undefined" && this.onTimeout) { var r = this.onTimeout(this.duration, this); if (typeof r == "undefined" || r != false) { this.abort() } else { this.timeoutTimer = setTimeout(this.timeout.bind(this), NET.UNEXT.Ajax.timeoutPeriod) } } } catch (e) { } finally { } }, invoke: function(a, b, c, d) { this.__start = new Date().getTime(); this.xmlHttp = new XMLHttpRequest(); this.isRunning = true; this.method = a; this.args = b; this.callback = c; this.context = d; var f = typeof (c) == "function" && c != NET.UNEXT.Ajax.noOperation; if (f) { if (MS.Browser.isIE) { this.xmlHttp.onreadystatechange = this.doStateChange.bind(this) } else { this.xmlHttp.onload = this.doStateChange.bind(this); this.xmlHttp.onerror = this.mozerror.bind(this) } this.onLoading(true) } var g = NET.UNEXT.Ajax.toJSON(b) + ""; if (NET.UNEXT.Ajax.cryptProvider != null && typeof NET.UNEXT.Ajax.cryptProvider.encrypt == "function") { g = NET.UNEXT.Ajax.cryptProvider.encrypt(g) } this.xmlHttp.open("POST", this.url, f); this.xmlHttp.setRequestHeader("Content-Type", "text/plain; charset=utf-8"); this.xmlHttp.setRequestHeader("X-" + NET.UNEXT.Ajax.ID + "-Method", a); if (NET.UNEXT.Ajax.token != null && NET.UNEXT.Ajax.token.length > 0) { this.xmlHttp.setRequestHeader("X-" + NET.UNEXT.Ajax.ID + "-Token", NET.UNEXT.Ajax.token) } this.timeoutTimer = setTimeout(this.timeout.bind(this), NET.UNEXT.Ajax.timeoutPeriod); try { this.xmlHttp.send(g) } catch (e) { } if (!f) { return this.createResponse({ error: null, value: null }) } return true } };
NET.UNEXT.Ajax.RequestQueue = function(b) { this.queue = []; this.requests = []; this.timer = null; if (isNaN(b)) { b = 2 } for (var i = 0; i < b; i++) { this.requests[i] = new NET.UNEXT.Ajax.Request(); this.requests[i].callback = function(a) { var r = a.context; a.context = r[3][1]; r[3][0](a, this) }; this.requests[i].callbackHandle = this.requests[i].callback.bind(this.requests[i]) } this.processHandle = this.process.bind(this) };
NET.UNEXT.Ajax.RequestQueue.prototype = { process: function() { this.timer = null; if (this.queue.length == 0) { return } for (var i = 0; i < this.requests.length && this.queue.length > 0; i++) { if (this.requests[i].isRunning == false) { var r = this.queue.shift(); this.requests[i].url = r[0]; this.requests[i].onLoading = r[3].length > 2 && r[3][2] != null && typeof r[3][2] == "function" ? r[3][2] : NET.UNEXT.Ajax.onLoading; this.requests[i].onError = r[3].length > 3 && r[3][3] != null && typeof r[3][3] == "function" ? r[3][3] : NET.UNEXT.Ajax.onError; this.requests[i].onTimeout = r[3].length > 4 && r[3][4] != null && typeof r[3][4] == "function" ? r[3][4] : NET.UNEXT.Ajax.onTimeout; this.requests[i].onStateChanged = r[3].length > 5 && r[3][5] != null && typeof r[3][5] == "function" ? r[3][5] : NET.UNEXT.Ajax.onStateChanged; this.requests[i].invoke(r[1], r[2], this.requests[i].callbackHandle, r); r = null } } if (this.queue.length > 0 && this.timer == null) { this.timer = setTimeout(this.processHandle, 0) } }, add: function(a, b, c, e) { this.queue.push([a, b, c, e]); if (this.timer == null) { this.timer = setTimeout(this.processHandle, 0) } }, abort: function() { this.queue.length = 0; if (this.timer != null) { clearTimeout(this.timer) } this.timer = null; for (var i = 0; i < this.requests.length; i++) { if (this.requests[i].isRunning == true) { this.requests[i].abort() } } }, dispose: function() { for (var i = 0; i < this.requests.length; i++) { var r = this.requests[i]; r.dispose() } this.requests.clear() } };
NET.UNEXT.Ajax.queue = new NET.UNEXT.Ajax.RequestQueue(2);
NET.UNEXT.Ajax.AjaxClass = function(a) { this.url = a };
NET.UNEXT.Ajax.AjaxClass.prototype = { invoke: function(a, b, e) { if (e != null) { if (e.length != 6) { for (; e.length < 6; ) { e.push(null) } } if (e[0] != null && typeof (e[0]) == "function") { return NET.UNEXT.Ajax.queue.add(this.url, a, b, e) } } var r = new NET.UNEXT.Ajax.Request(); r.url = this.url; return r.invoke(a, b) } };
NET.UNEXT.Ajax.token = "d4a4d270.42924A0E7B646907CBABEA28A8C1FAB9";
NET.UNEXT.Ajax.UtcOffset = "+0800";

if(typeof SHOW == "undefined"){ SHOW={}; }
if(typeof SHOW.Ajax == "undefined"){ SHOW.Ajax={}; }
if(typeof SHOW.Ajax.User == "undefined"){ SHOW.Ajax.User={}; }
if(typeof SHOW.Ajax.User.Examsign_class == "undefined"){ SHOW.Ajax.User.Examsign_class={}; }
SHOW.Ajax.User.Examsign_class = function() {};
NET.UNEXT.extend(SHOW.Ajax.User.Examsign_class.prototype, NET.UNEXT.extend(new NET.UNEXT.Ajax.AjaxClass(), {
	SaveInfo: function(Tname, Gender, Birthday, IDtype, IDnumber, Graduated, Graduation, Major, Edu, Industry, Workunits, Workunitstype, Position, Tel, Mobile, Email, Amail, Address, Zip) {
		return this.invoke("SaveInfo", {"Tname":Tname, "Gender":Gender, "Birthday":Birthday, "IDtype":IDtype, "IDnumber":IDnumber, "Graduated":Graduated, "Graduation":Graduation, "Major":Major, "Edu":Edu, "Industry":Industry, "Workunits":Workunits, "Workunitstype":Workunitstype, "Position":Position, "Tel":Tel, "Mobile":Mobile, "Email":Email, "Amail":Amail, "Address":Address, "Zip":Zip}, this.SaveInfo.getArguments().slice(19));
	},
	Sign: function(Ed, Etitle, Stype, StypeName, Xing, Zhong, Ming, Peixunjigou, Peixunjigouming, PMIUname, PMIUpass, IsPMIUser, PMINumber, _PMIUtimeB, _PMIUtimeE, PMItimeB, PMItimeE, Kaodian, Kaodianming, PMIID) {
		return this.invoke("Sign", {"Ed":Ed, "Etitle":Etitle, "Stype":Stype, "StypeName":StypeName, "Xing":Xing, "Zhong":Zhong, "Ming":Ming, "Peixunjigou":Peixunjigou, "Peixunjigouming":Peixunjigouming, "PMIUname":PMIUname, "PMIUpass":PMIUpass, "IsPMIUser":IsPMIUser, "PMINumber":PMINumber, "_PMIUtimeB":_PMIUtimeB, "_PMIUtimeE":_PMIUtimeE, "PMItimeB":PMItimeB, "PMItimeE":PMItimeE, "Kaodian":Kaodian, "Kaodianming":Kaodianming, "PMIID":PMIID}, this.Sign.getArguments().slice(20));
	},
	Agree: function(Ed) {
		return this.invoke("Agree", {"Ed":Ed}, this.Agree.getArguments().slice(1));
	},
	url: '/App_Ajax/SHOW.Ajax.User.Examsign,SHOW.Ajax.ajax?doing=info&domain=user'
}, false), false);
SHOW.Ajax.User.Examsign = new SHOW.Ajax.User.Examsign_class();
;原文链接:https://blog.csdn.net/shenhonglei1234/article/details/115632837
本站部分内容转载于网络,版权归原作者所有,转载之目的在于传播更多优秀技术内容,如有侵权请联系QQ/微信:153890879删除,谢谢!

推荐图文


随机推荐