电子邮箱 ENGLISH





TOP
// 在 Bootstrap 加载之前或之后添加 (function() { if (typeof jQuery !== 'undefined') { var originalSizzle = jQuery.find; jQuery.find = function(selector, context, results, seed) { // 拦截无效选择器 if (!selector || selector === '#' || (typeof selector === 'string' && selector.trim() === '#')) { return []; } try { return originalSizzle.apply(this, arguments); } catch (e) { if (e && e.message && e.message.indexOf('unrecognized expression') !== -1) { console.warn('jQuery selector error prevented:', selector); return []; } throw e; } }; } })();