最赞回答 / 林夕_090
我的也出现了这样的问题,,在浏览器上运行时,按下F12后在(document.getElementById("content_table_body").appendChild(tr))上显示 Uncaught TypeError: Cannot read property 'appendChild' of null,我就直接把(<tbody></tbody>)删除了,并把getElementById("content_table_body")改成了getElementById("c...
2016-12-31
已采纳回答 / JonSay
显示中文的问题我是这样解决的,改成doPost请求,前台两次编码转换var url = "search?keyword="+encodeURI(encodeURI(content.value));后台也需要转换一次// request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
String keyword = request.getParameter("keyword");
keyword =...
2016-11-23