从属性获取值作为文本。 XPATH 1.0

时间:2017-06-09 13:25:38

标签: xpath

我有

$.ajax({
   type: 'POST',
   url: 'http://admin:admin@my_rest_api_url',
   data: { "name":"John","surname":"Doe" },
   crossDomain: true
});

如何将“one”作为文本,而不是作为DOMAttribute?

当我使用

<div title='one'></div>

我收到了

//div/@title

但我只需要“一个”。可能吗? 像这样的东西不起作用:

title='one'

P.S。使用XPATH 1.0

1 个答案:

答案 0 :(得分:0)

使用string(//div/@title)选择字符串值。