假设我有以下 HTML:
<html>
<head>
<title>My Test Page</title>
</head>
<body>
I liked the book <cite>Catcher In The Rye</cite>.
I also liked the book <cite>The Great Gatsby</cite>.
</body>
</html>
我想知道的是是否有办法选择<cite>
和</cite>
标签之间的所有字符串?我想要做的是在cite
标签之间的所有文本中添加一个 CSS 样式。我知道我可以class
为每个属性添加一个公共属性并使用类名选择它们,但是有很多,我不想将它添加到每个属性中。jQuery 有cite
标签选择器吗?