// 錨點(diǎn)跳轉(zhuǎn) by ID
export function ScrollToAnchor(anchorName) {
? if (anchorName) {
? ? const anchorElement = document.getElementById(anchorName);
? ? if (anchorElement) {
? ? ? anchorElement.scrollIntoView({
? ? ? ? block: 'start', behavior: 'auto'
? ? ? });
? ? }
? }
}