另一种解决方案是在您的正文中添加一个 ID ,然后使用以下代码:
<script>
var bgcolorlist=new Array("background: #ff871b", "background: #15efa1", "background: #51ddff", "background: #ff1b6c", "background: #000000");
var color = bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)];
var d = document.getElementById("your-body");
d.setAttribute("style", color);
</script>
据我所知,Tumblr 允许您使用 jQuery,这比纯 Javascript 容易得多。如果您在代码中添加了 jQuery,只需执行以下操作:
<script>
var bgcolorlist=new Array("background: #ff871b", "background: #15efa1", "background: #51ddff", "background: #ff1b6c", "background: #000000");
var color = bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)];
$('body').css('backgroundColor', color);
</script>