注意:appendTo前面一定要是jquery对象。 var ul = $('ul'); // 添加DOM对象: ul.append('<li>你好</li>'); // 添加jQuery对象: ul.append($('#box')) ...
確定! 回上一頁