Menu
Your Cart

Forgot Your Password?

Enter the e-mail address associated with your account. Click submit to have a password reset link e-mailed to you.

Your E-Mail Address
$(document).ready(function() { const interval = setInterval(function() { const $element = $('.page-title span'); if (!$element.length) return; const text = $element.text(); if (text && text.includes('(0.00kg)')) { $element.text(text.replace('(0.00kg)', '').trim()); clearInterval(interval); // 找到后停止轮询 } }, 100); // 每100ms检查一次 });