問題描述#
我最近用網拍商店,但是動圖圖片一直放不上ㄑ,,放上ㄑ的圖片都無法顯示,都呈現一個小人在比耶的圖示,不知道是不是語法出了問題 .拜託替我看一下我的語法哪裡有問題…謝謝
{
anchor.addEventListener("click", function (e) {
e.preventDefault();
var id = this.getAttribute("href").substr(1);
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
behavior: "smooth"
});
} else {
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
}
if (id === "top") {
history.replaceState(null, null, " ");
} else {
history.pushState(null, null, `#${id}`);
}
});
});