以下是一个简单的示例,演示了 <del> 元素及其 cite 属性的使用:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deleted Text Example</title>
</head>
<body>
<p>This is some text that has been <del cite="https://example.com/explanation">deleted</del>.</p>
</body>
</html>
在上述例子中,<del> 元素标记了一个被删除的文本片段,并使用 cite 属性提供了一个链接,该链接指向一个解释或原因的资源。这个链接可以是任何解释删除的合适资源,例如包含详细说明的网页或文档。
请注意,cite 属性是可选的,而不是必需的。如果没有提供 cite 属性,浏览器不会显示引用链接。
转载请注明出处:http://www.zyzy.cn/article/detail/3975/HTML