01 2013 档案

解决ajax传递中文参数,出现乱码的问题
摘要:1、jsp页面照常传递参数。2、java页面接收时,String bt = request.getParameter("bt");if(bt!=""){ try { bt = new String(bt.getBytes("ISO-8859-1"),"utf-8"); } catch(UnsupportedEncodingException e) { e.printStackTrace(); }} 阅读全文

posted @ 2013-01-27 16:07 专注2018 阅读(268) 评论(0) 推荐(0) 编辑

Eclipse+MyEclipse总是显示quick update的解决办法
摘要:1、Windows > Preferences > MyEclipse Enterprise Workbench > Community Essentials, 把选项 "Search for new features on startup"的前勾去掉即可。2、另外关闭的Eclipse的自动更新:Windows > Preferences > Install/Update>automatic update,去掉automatically find new update and notify me的勾。 阅读全文

posted @ 2013-01-26 09:59 专注2018 阅读(308) 评论(0) 推荐(0) 编辑

<c:forEach 的常用整理
摘要:<c:forEach items="${images}" var="img" varStatus="status"> <div style="float:left;margin-right:10px;"> <img src="${ctx}${img.img_url}" width="500px" height="400px"/> </div></c:forEach>获取<c:forEach的 阅读全文

posted @ 2013-01-24 13:38 专注2018 阅读(20561) 评论(0) 推荐(1) 编辑

jquery显示div的方法
摘要:隐藏代码:<div id="bgy" style="display:none;"></div>显示方式:$("#bgy").css("display","block");//第1种方法$("#bgy").attr("style","display:block;");//第2种方法$("#bgy").show();//第3种方法注:等同的js方法document.getElementById(& 阅读全文

posted @ 2013-01-16 13:14 专注2018 阅读(353) 评论(0) 推荐(0) 编辑