特定URL's在Window.Onload上

Specific URL's on Window.Onload

本文关键字:Window Onload URL 特定      更新时间:2023-09-26

我是JS的新手,只是在学习,所以如果我说了一些非正统的话,不要猛烈抨击我。

目标

当用户在论坛上输入特定主题时加载特定背景图像

我尝试过的

我搜索了一些选项,找到了Window.Onload选项,它允许我在页面加载完成后在后台加载图像。问题是如何在特定主题上触发特定图像?

伪代码

if (user enters) /t/sueper-topic
load - super-background.png
else - carry on
var pathImages = {
     '/t/sueper-topic': 'super-background.png'
};
window.addEventListener('load', function(){
    var src = pathImages[location.pathname];
    if(src)
        document.body.style.backgroundImage = 'url(' + src + ')';
});