Example: js remove li from ul var myList = document.getElementById('myList'); myList.innerHTML = ''; //Or with jQuery: $('#myList').empty();
確定! 回上一頁