var editLink = document.createElement("a")中如何设置超链接的样式
时间: 2023-06-09 09:03:49 浏览: 210
创建超链接
要设置超链接的样式,可以使用以下代码:
editLink.href = "https://www.example.com"; // 设置链接地址
editLink.textContent = "Example"; // 设置链接文本
editLink.style.color = "blue"; // 设置链接文字颜色
editLink.style.textDecoration = "underline"; // 设置链接下划线
例如,将编辑链接的样式设置为蓝色的下划线链接,链接文本为"Example",可以使用以上代码。
阅读全文