使用 XPATH(和 PHP)从样式属性中选择背景 url
我只想从此背景图像样式属性中选择 url,这可以通过 XPATH 实现吗?
<a href="http://www.test.com" style="background-image: url('http://www.test.com/hello.jpg');">test</a>
我有类似的东西
$url = $xpath->query('//a//@style');
I'd like to select only the url from this background image style attribute, is that possible with XPATH?
<a href="http://www.test.com" style="background-image: url('http://www.test.com/hello.jpg');">test</a>
i have something like
$url = $xpath->query('//a//@style');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
基于 XSLT 的验证:
当此转换应用于提供的 XML 文档时:
生成所需的正确结果< /强>:
Use:
XSLT-based verification:
when this transformation is applied on the provided XML document:
the wanted, correct result is produced: