2
我想比較Html文檔天氣有相同的標籤具有相同的安排,無論不同的內部文本和屬性值是不同的。我只想比較一般的標籤結構。如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結構中的一個額外的標題標籤,無論內在價值的屬性值相同。
你只想知道他們是不同的還是你也想知道其中的區別?我認爲在這兩種情況下將html文檔解析爲XML都會有所幫助。 –
是的,我也想知道區別。 –
輸出應該有什麼區別? –