Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Good afternoon.
There is an option without language binding:
After that, you can simply access nodeValue, if we talk about php, it will look like this:
$res = $xpath->query('//*[not(name() = "tbody")]/@style');
foreach ($res as $r)
echo $r->nodeValue;
$res = $xpath->query('//*[not(name() = "tbody")]');
foreach ($res as $r)
echo $r->getAttribute('style');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question