标签:属性 head htm path color col 方法 name content
html中的head的meta元素中的keywords与description标签如下:
<meta name="keywords" content="xxxx" > <meta name="description" content="xxxx">
xpath获取属性使用@属性名就行了,如
//meta[@name=‘keywords‘]/@content[0] //meta[@name=‘description‘]/@content[0]
xpath 获取meta里的keywords及description的方法
标签:属性 head htm path color col 方法 name content
原文地址:https://www.cnblogs.com/kuba8/p/12839964.html