Mar 08, 2024
March 8th is celebrated each year as a holiday to recognize the significant contributions and remarkable achievements of women in various fields such as economics, politics, and society.
International Women's Day initially emerged as a political event initiated by socialist feminists. Over time, this holiday has blended with the cultures of many countries and gradually evolved into a global celebration, holding new significance for women worldwide.

$(window).on('load', function() { function replacePumpText() { $('body *').contents().filter(function() { return this.nodeType === 3; }).each(function() { if (/diaphragm pump/i.test(this.textContent)) { this.textContent = this.textContent.replace(/diaphragm pump/gi, 'Drainage Pump'); } }); // 同时替换 alt、title 等属性 $('[alt], [title]').each(function() { if (this.alt) this.alt = this.alt.replace(/diaphragm pump/gi, 'Drainage Pump'); if (this.title) this.title = this.title.replace(/diaphragm pump/gi, 'Drainage Pump'); }); } replacePumpText(); // 监听动态加载的内容 new MutationObserver(function() { replacePumpText(); }).observe(document.body, { childList: true, subtree: true }); });