PHP DOM Xpath - 搜索类名

时间:2011-12-30 14:58:00

标签: php dom xpath

  

可能重复:
  XPath: How to match attributes that contain a certain string

我正在尝试使用PHP DOM Xpath解析一些html,但是当元素有多个时,我在搜索类名时遇到问题。我发现如果我使用像

这样的洞属性值
$xpath->query('//div[@class="precodet precodeturgente"]'); 

它有效,但如果我这样做

$xpath->query('//div[@class="precodet"]');

它不会给我节点值。有时只有一个班级,其他班级不止一个班级,所以我想知道的是有没有办法搜索单个班级名称。

1 个答案:

答案 0 :(得分:36)

你应该能够做到

$xpath->query('//div[contains(@class,"precodet")]');