Html.Table
Html.Table(html as any,columnNameSelectorPairs as list,optional options as nullable record) as table
返回一个表,其中包含针对所提供的 html
运行指定 CSS 选择器的结果。可提供可选的记录参数 options
来指定附加属性。此记录可包含以下字段:
RowSelector
示例:
从示例 html 文本值返回一个表。
使用情况:
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])
输出:
#table({"Name", "Title"}, {{"Jo", "Manager"}})
示例:
从示例 html 文本值中提取所有 href。
使用情况:
Html.Table("<a href=""/test.html"">Test</a>", {{"Link", "a", each [Attributes][href]}})
输出:
#table({"Link"}, {{"/test.html"}})