如何编辑作为appendChildElement() 添加的按钮元素。并将其转换为很棒的字体图标
该文档是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在添加类之后在按钮范围内创建一个“i”元素,最后使用 add child 将这个 i 元素添加到按钮元素。
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.