修复蓝奏云pan解析错误的问题#12

This commit is contained in:
qaiu
2023-08-20 10:29:00 +08:00
parent 6d3335d086
commit aea97caed1
2 changed files with 49 additions and 37 deletions

View File

@@ -5,36 +5,42 @@
var signObj;
/*
var $,jQuery;
var $, jQuery;
$ = jQuery = function(){
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
init:function(){
return {
focus: function(a) {
}
}
}
}
jQuery.fn.init.prototype = jQuery.fn;
*/
// 伪装ajax函数获取关键数据
var $ = {
ajax: function(obj) {
signObj = obj
}
$ = jQuery = function () {
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
init: function () {
return {
focus: function (a) {
},
keyup: function(a) {
},
ajax: function (obj) {
signObj = obj
}
}
},
}
jQuery.fn.init.prototype = jQuery.fn;
// 伪装jquery.ajax函数获取关键数据
$.ajax = function (obj) {
signObj = obj
}
var document = {
getElementById: function (v) {
return {
value : v
value: 'v'
}
}
},
}