在我的 Wordpress 页面中,我有许多以歌词为主题的帖子。我希望以不同的方式设计交替的歌词。到目前为止,我已经整理了基础知识,但是我需要帮助使用 jQuery 为每行歌词添加前缀和后缀<li>
,<ul>
以便使用 CSS 样式将样式应用于奇数行和偶数行,正如我在这篇文章中看到的那样(http://stackoverflow .com/questions/358350/alternate-background-colors-for-list-items)。我的 HTML 当前如下所示:
<div id="lyricstext" style="overflow: auto; height: 340px; width: 640px;">
<ul>
Leave me alone
Leave me alone
Leave me alone
So just leave me alone
I said leave me alone
Leave me alone
Leave me alone
I’m not in the mood!
Piss off!
So when I say leave me alone
Nah T don’t play
I’m like Michael Jackson in a non-paedo way
The thought of mad partyin’, debauchery tortures me
My T-shirt reads “Fuck off and don’t talk to me”
Approaching every situation awkwardly
Like I’m mesmerized under some sort of sorcery
Who’s calling me? Don’t know – I’ll ignore it G
If I don’t share my time then is there more for me?
</ul>
</div>
所以,我想知道要在页面上应用什么 JS 来为我插入这些<li>
和</li>
标签,以便能够以不同的方式设置每个备用行的样式。谢谢