如何编辑作为appendChildElement() 添加的按钮元素。并将其转换为很棒的字体图标

发布于 2025-01-09 19:34:52 字数 287 浏览 1 评论 0原文

该文档是使用 javascript 添加的:

      const task_edit_el = document.createElement("button");
      task_edit_el.classList.add("edit");
      task_edit_el.innerHTML = "Edit";

现在这将创建一个带有内部 html 编辑的按钮元素。如何将内部 html 更改为很棒的字体图标?因为它没有显示在正常的 html 页面上。当单击按钮时,它被操纵安装。

The document was added as using javascript:

      const task_edit_el = document.createElement("button");
      task_edit_el.classList.add("edit");
      task_edit_el.innerHTML = "Edit";

Now this creates a button element with the inner html Edit. how do i change the inner html to a font awesome icon? since its not showing on the normal html page. it is manipulated to mount when a button is clicked.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

五里雾 2025-01-16 19:34:52

您需要在添加类之后在按钮范围内创建一个“i”元素,最后使用 add child 将这个 i 元素添加到按钮元素。

<button><i class="fa-thin fa-alarm-clock"></i> Alarm</button>

You need to create an "i" element inside in the button scope, after add class and finally add this i element to button element using add child.

<button><i class="fa-thin fa-alarm-clock"></i> Alarm</button>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文