09 2012 档案

摘要:var teamList=response.teamList; var svestList=document.getElementById("teamNameList"); for(var i=0;i<teamList.length;i++){ var op = document.createElement("OPTION"); op.value = teamList[i].teamid; op.innerHTML =teamList[i].teamName; svestList.appendChil... 阅读全文
posted @ 2012-09-18 16:00 mynotes 阅读(508) 评论(0) 推荐(0)
摘要:前台编码:var temp=encodeURI(encodeURI(temp)). 后台: String temp=java.net.URLDecoder.decoder(temp,"utf-8"); 阅读全文
posted @ 2012-09-16 17:45 mynotes 阅读(151) 评论(0) 推荐(0)