我希望主页的帖子片段标题出现在帖子的第一张图片上(如果鼠标悬停在特色(第一张)图像上,则显示可能的标题)。 我有.post.post-body .post-title类。我想我必须使用javascript来更改模板代码相关位置的post-title类的css。我找到了相关的地方,但我无法正确制作javascript。有人可以帮我下面的工作吗?
<script>
document.getElementByClassName('post-title').style.backgroundImage.src ="...........";
</script>
<style type='text/css'>
.post-title { background-repeat: no-repeat;}
</style>