jquery如何實現評論內容即時顯示?
如果你只要前端顯示的話就用DOM,創建一個onclick函數,var newText=document.getElementById("...").value; ,然后創建新文本var addText=createTextnode(newText);,再在評論列表.appendChild(addText);如果要保存在服務器再從中讀取的話就得用AJAX了
jquery如何實現評論內容即時顯示?
如果你只要前端顯示的話就用DOM,創建一個onclick函數,var newText=document.getElementById("...").value; ,然后創建新文本var addText=createTextnode(newText);,再在評論列表.appendChild(addText);如果要保存在服務器再從中讀取的話就得用AJAX了