好吧,我有一个 div 标签,它有一个class="blog-post"
和 id 类似的id="article-23"
(其中“23”可以是任何数字,因为它是数据库中博客文章的 id)。我需要以某种方式从该 id 中获取一个数字,而不是对该 div 标签应用一些规则。所以说:
if number from id % 2 == 0 {
set text colour black to associated div tag with class of blog-post
} else {
set text colour white to associated div tag with class of blog-post
}
这只是一个“伪”代码,用于显示如果来自 id 的数字是偶数或奇数,我不想应用依赖的逻辑,但问题仍然相同,我如何从 id 中获取数字,如“article-23”?