跳转到内容

MediaWiki:Gadget-SideBarPic.js:修订间差异

(………………)
(………………)
第1行: 第1行:
bg = document.getElementById("pagebg");
let bg = document.getElementById("pagebg");
path = bg.data-bg;
let path = bg.data-bg;
alert(path)
 
body = document.querySelector("body");
let body = document.querySelector("body");
body.style.backgroundImage = `url(${path})`;
body.style.backgroundImage = `url(${path})`;

2024年7月26日 (五) 13:48的版本

let bg = document.getElementById("pagebg");
let path = bg.data-bg;

let body = document.querySelector("body");
body.style.backgroundImage = `url(${path})`;