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