作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我的句子有问题。我有一个句子,我做了一个循环来获取单词,然后我想将它们放入 <li> -
中一个在另一个之下。所以我又做了一个循环来只获取单词,并将它们放入 li 中,但在我的页面中我只有一个单词。为什么会发生这样的事?
const wordText = document.createElement("div");
const lettersSection = document.querySelector(".letter");
wordText.classList.add("wordText");
lettersSection.appendChild(wordText);
const jokeText = document.querySelectorAll(".random_joke h3");
for (let el of jokeText) {
const matchWords = el.textContent.match(/[a-z]+/gi);
const changeSequenceWords = matchWords.sort(byLength);
// const newString = changeSequenceWords.join(" ");
for (let el of changeSequenceWords ) {
const word = el;
console.log(el)
wordText.innerHTML = `<h4>Words:</h4><span><li>${word}</li></span>`
}
// const newString = changeSequenceWords.join(" ");
// wordText.innerHTML = `<h4>Words:</h4><span>${newString} </span>`
}
最佳答案
每次循环运行时,您都会删除 wordText.innerHTML
的旧值 - 使用 +=
:
wordText.innerHTML += `<h4>Words:</h4><span><li>${word}</li></span>`
关于javascript - 如何从另一个js下面的句子中设置单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56057575/
我是一名优秀的程序员,十分优秀!