2009-12-16 86 views
0

你好我想在我的語義運行一些診斷和我一直運行到這個錯誤,當我看在http://www.w3.org/2003/12/semantic-extractor.html 我的網站是www.bolderentertainment.com任何幫助將不勝感激。如何解決這個錯誤使用org.apache.xerces.parsers.SAXParser異常

Using org.apache.xerces.parsers.SAXParser 
Exception net.sf.saxon.trans.XPathException: org.xml.sax.SAXParseException: The element type "html" must be terminated by the matching end-tag "</html>". 
org.xml.sax.SAXParseException: The element type "html" must be terminated by the matching end-tag "</html>". 

回答

0

您在字符串的某個位置有一個未封閉的<html>標記。關閉它,錯誤將消失。

<html> 
    <div> 
    <!-- contents and other tags --> 
    </div> 
</html> <!-- You don't have this closing tag --> 
0

我建議先製作頁面validate as correct HTML

在您需要修復的各種事情:

  • <script>標記必須要麼<head><body>標籤內。
  • <p>標籤需要在<body>標籤內。
  • 您有兩個冗餘的<noframes>部分。