共用方式為


Html.Table

語法

Html.Table(html as any, columnNameSelectorPairs as list, optional options as nullable record) as table

關於

傳回資料表,其包含對所提供 html 執行指定 CSS 選取器的結果。 可提供選擇性記錄參數 options 來指定其他屬性。 記錄可包含下列欄位:

  • RowSelector

範例 1

從 HTML 文字值範例傳回資料表。

使用方式

Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])\

輸出

#table({"Name", "Title"}, {{"Jo", "Manager"}})

範例 2

從 HTML 文字值範例擷取所有 href。

使用方式

Html.Table("<a href=""/test.html"">Test</a>", {{"Link", "a", each [Attributes][href]}})

輸出

#table({"Link"}, {{"/test.html"}})