Add a li and the text in the js code. li is added, and the text is not in it. & nbsp; & lt; script & nbsp; type = "text/javascript" & gt; & nbsp; function & nbsp; t1 () {& nbsp; & nbsp in js code, add a li and the text in it. li is added, and the text is not in it.
Function t1 (){
Var ce = document. createElement ('Lil ');
Var ct = document. createTextNode ('中 ');
Ce. appendChild [ct]; // attach to li
Var s = document. getElementsByTagName ('Ul ') [0]; // search for ul
Var se = s. children [1]; // find li
S. insertBefore (ce, se );
}
Script
The above is the js code, but it is strange that li is added after running. However, the '中' of the corresponding li text cannot be displayed. thank you for your help !! Attached;
---------------------------------------------
JavaScript :???? Function? T1 (){???????? Var? Ce? =? Document. createElem... 'data-pics = '/img/2013/08/14/105539123 .png'>
------ Solution --------------------
Ce. appendChild (ct); // attach to li
Not ce. appendChild [ct];
The function of parentheses. square brackets are arrays.