Skip to content
document.querySelectorAll('.force-numeric input').forEach(function (input) {
input.addEventListener('focus', function () {
if (input.dataset.hinted) return;
const hint = document.createElement('div');
hint.textContent = '建議使用英文輸入法,以免數字輸入錯亂';
hint.style.position = 'absolute';
hint.style.background = '#fef3c7';
hint.style.color = '#92400e';
hint.style.fontSize = '12px';
hint.style.padding = '6px 8px';
hint.style.borderRadius = '4px';
hint.style.boxShadow = '0 0 4px rgba(0,0,0,0.2)';
hint.style.zIndex = 1000;
const rect = input.getBoundingClientRect();
hint.style.left = `${rect.left + window.scrollX}px`;
hint.style.top = `${rect.bottom + window.scrollY + 5}px`;
document.body.appendChild(hint);
input.dataset.hinted = 'true';
setTimeout(() => hint.remove(), 4000);
});
});
input.addEventListener('input', function () {
if (/[0-9]/.test(input.value)) {
// 顯示提醒框或紅色警告
input.classList.add('input-error');
// 或顯示訊息「偵測到非標準數字,請使用英文輸入法」
} else {
input.classList.remove('input-error');
}
});
📢 最新樂譜預購中! 李翰威《巡海》管樂團樂曲 6/30 開始出貨,預購享 9 折!
➡️ 立即預購
Dismiss
Scroll to Top