1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

あるclass名が設定されているタグだけを xpath で参照したい

Posted at

以下のタグのうち、class に「unko」が設定されているものだけを xpath で参照したいんだけど、

<li class="foo bar unko" /> <!-- ←こいつだけ参照したい -->
<li class="hoge fuga no-unko" />
<li class="aaa bbb unko-unko" />

以下ではヒットしないし、

//li[class="unko"]

以下では全部ヒットしてしまう。

//li[contains(@class, "unko")]

どうにかすっきりかけないものか...うーん...

1
3
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?