gpt4 book ai didi

javascript - 将图标附加到按钮

转载 作者:行者123 更新时间:2023-12-02 23:40:37 25 4
gpt4 key购买 nike

我有一个按钮,我想用 JavaScript 插入一个图标:

<button id="chat5" onclick="actualizarIdChat('{{ elemento.pk }}')" class="btn btn-secondary" style="background-color: maroon; border-color: transparent;border-radius: 15px;height: 60px;margin: 10px 0px 10px 0px;width: 90%;" type="button">
<img class="border rounded-circle" style="width: 50px;height: 50px;border-color: transparent;" src="{{ elemento.producto.info_producto.contenido_multimedia.0.contenido_url }}">
&nbsp; &nbsp; &nbsp;{{ elemento.producto.info_producto.nombre }}
</button>

这是我定义的让它工作的代码,但它什么也没做。

var idChat = 'chat5';
var icon = document.createElement("div");
icon.innerHTML = '<i class="fa fa-envelope"></i>';
document.getElementById(idChat).appendChild(icon);

我该怎么做?

最佳答案

更新javascript部分,看起来像:

var buttonElement = document.getElementById("chat5");
buttonElement.innerHTML = buttonElement.innerHTML + '<i class="fa fa-envelope"></i>';

它会起作用

关于javascript - 将图标附加到按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56097806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com