Questions tagged «createelement»


5
createElement优于innerHTML的优势?
在实践中,相对于innerHTML而言,使用createElement有何优势?我之所以问是因为,我坚信使用innerHTML在性能和代码可读性/可维护性方面会更有效,但是我的团队成员已经决定使用createElement作为编码方法。我只是想了解createElement如何更有效。

6
JavaScript追加子元素AFTER元素
我想使用javascript在ul元素内的另一个li后面附加一个li元素,这是我到目前为止的代码。 var parentGuest = document.getElementById("one"); var childGuest = document.createElement("li"); childGuest.id = "two"; 我熟悉appendChild, parentGuest.appendChild(childGuest); 但是,这会将新元素附加在另一个元素内部,而不是之后。如何在现有元素之后追加新元素?谢谢。 <ul> <li id="one"><!-- where the new li is being put --></li> <!-- where I want the new li --> </ul>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.