要與JavaScript交互,您可以使用JavaScript來獲取或修改span標簽的內容、樣式或屬性。以下是一些常用的方法:
document.getElementById
方法獲取span標簽的引用,并通過innerHTML
屬性來獲取或設置span標簽的內容。var span = document.getElementById("mySpan");
console.log(span.innerHTML);
span.innerHTML = "New content";
document.querySelector
方法來選擇span標簽,并通過textContent
屬性來獲取或設置span標簽的文本內容。var span = document.querySelector("span");
console.log(span.textContent);
span.textContent = "New text content";
setAttribute
和getAttribute
方法來獲取或設置span標簽的屬性。var span = document.getElementById("mySpan");
console.log(span.getAttribute("class"));
span.setAttribute("class", "newClass");
style
屬性來修改span標簽的樣式。var span = document.getElementById("mySpan");
span.style.color = "red";
span.style.fontSize = "20px";
通過這些方法,您可以與span標簽進行交互,并根據需要對其內容、樣式或屬性進行修改。