如何使用经典的 asp 和 vbscript 将格式不正确的 html 编写为格式良好的脚本?
我正在尝试解析一些 html 以切换各种元素属性的值。我认为解析 html 最可靠的方法是使用 xml 解析器 (msxml)。
问题是我尝试解析的 html 包含如下属性:
<param name="flashvars" value="autoplay=false&brand=embed&cid=97%2Ftest&locale=en_US"/>
这会导致 xml 解析器崩溃。我发现我需要 server.htmlencode()
value
属性,以便 xml 解析器正确加载它。我该如何处理这个问题?
我觉得这个问题是一个恶性循环。我无法使用正则表达式,因为 html 不够规则,现在我无法使用 xml 解析器,因为 html 不是“格式良好”的
帮助。我该如何处理这个问题?我希望能够使用 vbscript 更改属性值。
I am trying to parse some html to switch out values of various element attributes. I decided that the most reliable way to parse the html was to use an xml parser (msxml.)
The problem is that the html I'm trying to parse contains attribute like:
<param name="flashvars" value="autoplay=false&brand=embed&cid=97%2Ftest&locale=en_US"/>
Which causes the xml parser to blow up. I figured out that I need to server.htmlencode()
the value
attribute in order for the xml parser to load it properly. How do I approach this?
I feel like the problem is a vicious circle. I couldn't use regex's because html is not regular enough, and now I can't use xml parsers because the html isn't "well formed"
help. How do I approach this issue? I want to be able to change attribute values with a vbscript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 HTML 格式正确吗?如果是这样,您可以简单地使用 XML DomDocument。使用 XPath 查找要替换的属性。
实际上,您也可以在 ASP 中使用 JScript 服务器端,这可能会让您访问您可以使用的 HTMLDom 库。
您可能应该看一下用于清理 HTML 的库之一,例如 HTML Tidy http: //www.w3.org/People/Raggett/tidy/
你的主要问题是你需要对 & 符号进行替换,它们需要是
&
格式良好XML/XHTML。Is your HTML well formed? If so you could simply use an XML DomDocument. Use XPath to find the attributes you want to replace.
You can actually use JScript serverside as well in ASP, whicdh might give you access to HTMLDom libraries you could use.
You should probably have a look at one of the libraries for cleaning up HTML, something like HTML Tidy http://www.w3.org/People/Raggett/tidy/
Your main problem is you need to do a replace on the ampersands, they need to be
&
in well formed XML/XHTML.