1. 程式人生 > >關於表單提交資料亂碼問題

關於表單提交資料亂碼問題

1、檢查html頁面和搜尋頁面編碼是否相同 如果不相同 請更正為相同編碼。

2、如果更正為相同編碼仍然亂碼 在表單提交之前 submit之前加上編碼:

$("#submitbuttom").click(function(){
   if($("#textfield").val()==""||$("#textfield").val()==null)
   {alert("請輸入關鍵詞查詢!");return;}
   else{
     var searchform = document.getElementById("searchform");
     searchform.action='http://10.202.247.88:8080/was5/web/search?token=5.1502952402301.21&channelid=285582&searchword='+encodeURI($("#textfield").val());
     searchform.method='POST';
     document.charset='utf-8';


     searchform.submit();
   }
});

2、新增完成後依然亂碼 修改tomcat配置檔案:server.xml  新增編碼