Ви можете робити це постійно за замовчуванням. Я намагаюся завершити функцію jquery або jquery.fn.init, щоб це зробити без помилок, але ви можете зробити просту зміну джерела jquery, щоб це зробити. Додано кілька навколишніх ліній, за якими можна шукати. Я рекомендую шукати джерело jquery дляThe jQuery object is actually just the init constructor 'enhanced'
var
version = "3.3.1",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
var result = new jQuery.fn.init( selector, context );
if ( result.length === 0 ) {
if (window.console && console.warn && context !== 'failsafe') {
if (selector != null) {
console.warn(
new Error('$(\''+selector+'\') selected nothing. Do $(sel, "failsafe") to silence warning. Context:'+context)
);
}
}
}
return result;
},
// Support: Android <=4.0 only
// Make sure we trim BOM and NBSP
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
jQuery.fn = jQuery.prototype = {
І останнє, але не менш важливе, ви можете отримати нестиснений вихідний код jquery тут: http://code.jquery.com/