HtmlElement.AppendChild(HtmlElement) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為另一個項目的樹狀子目錄加入項目。
public:
System::Windows::Forms::HtmlElement ^ AppendChild(System::Windows::Forms::HtmlElement ^ newElement);
public System.Windows.Forms.HtmlElement AppendChild (System.Windows.Forms.HtmlElement newElement);
public System.Windows.Forms.HtmlElement? AppendChild (System.Windows.Forms.HtmlElement newElement);
member this.AppendChild : System.Windows.Forms.HtmlElement -> System.Windows.Forms.HtmlElement
Public Function AppendChild (newElement As HtmlElement) As HtmlElement
參數
- newElement
- HtmlElement
要附加至樹狀目錄中這個位置的 HtmlElement。
傳回
其後的項目已加入樹狀目錄中。
範例
下列程式碼範例會使用 CreateElement 方法建立新的超連結,並在 元素上使用 BODY
將它新增至頁面 AppendChild
結尾。 此範例會要求您的應用程式包含 WebBrowser 名為 的 WebBrowser1
控制項。
private void AddUrlToTooltip(string url)
{
if (webBrowser1.Document != null)
{
HtmlElement elem = webBrowser1.Document.CreateElement("A");
elem.SetAttribute("HREF", url);
elem.InnerText = "Visit our Web site for more details.";
webBrowser1.Document.Body.AppendChild(elem);
}
}
Private Sub AddLinkToPage(ByVal url As String)
If (WebBrowser1.Document IsNot Nothing) Then
With WebBrowser1.Document
Dim Elem As HtmlElement = .CreateElement("A")
Elem.SetAttribute("HREF", url)
Elem.InnerText = "Visit our web site for more details."
.Body.AppendChild(Elem)
End With
End If
End Sub
備註
HTML 檔案物件模型 (DOM) 可讓您以多種方式改變 HTML 檔案的執行時間內容。 使用 AppendChild 將新元素新增至現有檔,或移動頁面上的專案。
如果專案已經父代,將專案附加至另一個元素會自動從先前的父代中移除該專案。
當您在控制項上 WebBrowser 呼叫 ShowSaveAsDialog 方法時,不會保存對執行時間 AppendChild 檔所做的任何新增。