admin管理员组文章数量:1415137
I'm trying to extract inline javascript that is uniquely different on thousands of URLs, and is nested within the code at various levels.
As I familiarize myself with XPATH syntax I am trying to see if anyone knows a good way to target javascript For example:
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_n...</script>
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_#...</script>
The only unique identfier within the <script>...data_n...</script>
that I am attempting to extract is it contains:
var tabsRelated = ...
Within the confines of XPATH does anyone know a way to find the script that contains that variable and target the entire script? Sorta like:
//script[inner.text contains='var tabsRelated'
syntax is not proper
I'm trying to extract inline javascript that is uniquely different on thousands of URLs, and is nested within the code at various levels.
As I familiarize myself with XPATH syntax I am trying to see if anyone knows a good way to target javascript For example:
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_n...</script>
<script type="text/javascript"> ...data_#...</script>
<script type="text/javascript"> ...data_#...</script>
The only unique identfier within the <script>...data_n...</script>
that I am attempting to extract is it contains:
var tabsRelated = ...
Within the confines of XPATH does anyone know a way to find the script that contains that variable and target the entire script? Sorta like:
//script[inner.text contains='var tabsRelated'
syntax is not proper
Share Improve this question edited Nov 7, 2011 at 19:37 gen_Eric 227k42 gold badges303 silver badges342 bronze badges asked Nov 7, 2011 at 19:27 user856197user856197 3- possible duplicate of xpath to get Node containing text – Marc B Commented Nov 7, 2011 at 19:30
- The question I am asking refers to a more plex problem. In the cited discussion text() seems only to apply to HTML elements. I am unable to use this to isolate the above mentioned inline javascript. – user856197 Commented Nov 7, 2011 at 20:09
- 1 XPath has no concept of javascript. It's just plain text as far as string searching is concerned. Find JS nodes, and check if their textvalue contains the string you want. – Marc B Commented Nov 7, 2011 at 20:10
1 Answer
Reset to default 5Use:
//script[contains(., $someDistinguishingValue)]
where $someDistinguishingValue
should be replaced with the corresponding value (for example the above XPath expression may be dynamically generated as a string and then this string evaluated as an XPath expression using the available XPath API (such as the DOM method SelectNodes()
).
本文标签: Using XPATH to isolate inline javascriptStack Overflow
版权声明:本文标题:Using XPATH to isolate inline javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745211577a2647918.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论