How to change the background image through the tag “selected”

前端 未结 2 1194
粉色の甜心
粉色の甜心 2021-01-25 22:25

I\'m trying to change the background image of the body (id = \"shelf\") using a drop-down menu:



        
2条回答
  •  -上瘾入骨i
    2021-01-25 23:26

    It's working.

    function changeTheme() {
        var e = document.getElementById("themes");
        var theme = e.options[e.selectedIndex].value;
        document.getElementById("shelf").style.backgroundImage = "url(" + theme + ")";
    
    }
    

提交回复
热议问题