使用 HTML Agility pack 获取 javascript 变量值
是否可以使用 html 敏捷包获取 javascript 变量值?
<script type="text/javascript">
var title = "Site title";
var articlesummary = "article summary.";
</script>
例如,html agility pack 有什么方法可以让我获取变量 title
的值吗?
Is it possible to get a javascript variable value with html agility pack?
<script type="text/javascript">
var title = "Site title";
var articlesummary = "article summary.";
</script>
Is there any way that html agility pack would allow me to get the value of the variable title
for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法获取 HTML Agility Pack 中 javascript 变量的值。你必须使用正则表达式。
You can't get the value of a javascript variable in HTML Agility Pack. You have to use regex.
其实你可以做到。 HtmlAgilityPack 为您提供内部 html,您可以按照自己的方式选择文本和变量。
例如:
此代码将为您提供脚本标签的内部文本。之后,您可以分割以“;”结尾的整个文本。
Actually you can do it. HtmlAgilityPack gives you the inner html and you pick your texts&variables by your own way.
For example:
This code will give you the inner text of script tag. After that, you may split the whole text ending with ";".