2017-06-19 81 views
1

我正在運行連接了幾個HTML文件的R代碼。作爲R,則返回一個錯誤消息,我已經打開從該消息的結果的源文件:意外的結束標記(字體)HTML

在HTML文件中,有以下錯誤消息:

「結束標記(字體)違反步驟1,段落。。1的收養機構算法預期的結束標記(字體)忽略

正如我完全新的HTML,如果有人告訴我,從該消息導致我將不勝感激下面是代碼行:

<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> with parameters of type <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A></FONT></TH> 

提前致謝。

回答

1

你有</FONT>標籤......但你不是一個初學者標籤<FONT>

<TH ALIGN="left" COLSPAN="2"> 
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A> 
    </FONT> 
</TH> 

..所以也添加開始

<TH ALIGN="left" COLSPAN="2"> 
    <FONT 
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A> 
    </FONT> 
</TH> 

,或者你應該刪除

<TH ALIGN="left" COLSPAN="2"> 
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A> 
</TH>