我想比较 Html 文档天气是否存在具有相同排列的相同标签,而不管不同的内部文本和属性值是否不同。我只想比较一般的标签结构。如
<html>
<head>
</head>
<body>
<span class="my paragraph">comparison of general tag structure of html</span>
</body>
</html>
和
<html>
<head>
</head>
<body>
<span class="Mega Offer">free membership offer</span>
</body>
</html>
是一样的
但
<html>
<head><title>Different</title>
</head>
<body>
<span class="my paragraph">comparison of general tag structure of html</span>
</body>
</html>
不一样,因为标签的html结构中有一个额外的标题标签,而不管内部值和属性值是否相同。