Html.Table
ไวยากรณ์
Html.Table(html as any, columnNameSelectorPairs as list, optional options as nullable record) as table
เกี่ยวกับ
แสดงตารางที่มีชุดผลลัพธ์ของการเรียกใช้ตัวเลือก CSS ที่ระบุกับ ที่ให้มาhtml
อาจมีพารามิเตอร์ 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
แยก href ทั้งหมดจากค่าข้อความ html ตัวอย่าง
การใช้งาน
Html.Table("<a href=""/test.html"">Test</a>", {{"Link", "a", each [Attributes][href]}})
เอาท์พุท
#table({"Link"}, {{"/test.html"}})