的内容,因为它是

-6ren"> 的内容,因为它是

-我正在尝试使用谷歌图标字体更改音频按钮,但innerHTML仅适用于段落,您将如何在javascript中对此进行编码? if(aud1){ document.getElementBy-6ren">

gpt4 book ai didi

javascript - 如何更改 的内容,因为它是

转载 作者:行者123 更新时间:2023-11-28 04:00:17 25 4
gpt4 key购买 nike

我正在尝试使用谷歌图标字体更改音频按钮,但innerHTML仅适用于段落,您将如何在javascript中对此进行编码?

if(aud1){
document.getElementById("play1").addEventListener("click",
function(){
if(aud1.paused){
aud1.play();
document.getElementById("play1").innerHTML = <i class="material-icons">play_arrow</i>;}
else{
aud1.pause();
document.getElementById("play1").innerHTML = <i class="material-icons">pause</i>;}

最佳答案

为您的标签分配 ID

<i id="icon" class="material-icons">play_arrow</i>

然后更改标签的内部 HTML

if(aud1){
document.getElementById("play1").addEventListener("click",
function(){
if(aud1.paused){
aud1.play();
document.getElementById("icon").innerHTML ="play_arrow";}
else{
aud1.pause();
document.getElementById("icon").innerHTML ="pause";
}
);

关于javascript - 如何更改 <i class"material-icons> 的内容,因为它是 <p>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47175281/

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