javascript中怎么给span动态赋值

2024年11月17日 07:56
有1个网友回答
网友(1):

js给span标签赋值的方法一般有两种方法:

第一种方法:输出html




 function s(){
    document.getElementById("hello").innerHTML = "";
    }

第二种方法:输出文本




 function s(){
    document.getElementById("hello").innerText = "hello world";
}