`
文章列表
      1 用HttpURLConnection来读取网络上的文件  public static void genFile(HttpServletRequest request, String name, ) throws Exception { String rootPath = request.getRealPath("/"); String saveDir = rootPath+ "htmlDir"+File.separator +videoID; File saveDirF ...
 jquery操作select(取值,设置选中)       比如<select class="selector"></select>   1、设置value为pxx的项选中   $(".selector").val("pxx");     2、设置text为pxx的项选中   $(".selector").find("option[text='pxx']").attr("selected",true); ...
sql 查询的时候, .addEntity(Person.class)会将查询出来能放到实体中的字段数据放到实体中,并将实体放到数组的第零个位置 .addScalar("area") 这个字段查询出来的数据放到数组的第一个位置 .addScalar("email") 这个字段查询出来的数据放到数组的第er个位置 例子: Query query = getSession().createSQLQuery(sql.toString()).addEntity(Person.class) .addScalar("area").addSca ...
  table{ border:1px solid rgb(139,181,130); font-size:14px; table-layout:fixed; empty-cells:show; border-collapse: collapse; margin:3px ; } *{ word-wrap:break-word; } table.t1{ border:1px solid #cad9ea; color:#666; } /*内容单行显示 多余用省略号 不显示过长 */ table.t ...
        做弹出cent的时候<a  onclick="showDia()"></a>这样每次点击的时候页面滚动条会滚动到最上层,加入代码  href="javascript:void(0)"     <!--遮罩层--> <div id="floatBoxBg" style="display:none;filter:alpha(opacity=30);opacity:0.3;"></div> //i ...
struts 重定向后传两个参数 <result name="list" type="redirect">/visitmessage/message_queryList.action?uid=${uid}&amp;classid=${classid}</result>

html 打印

<object id="WebBrowser" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" height="0" width="0"> </object> <input type="button" value="打印" onclick="document.all.WebBrowser.ExecWB(6,1)"> <input type=" ...
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; ch ...
     1 string中trim String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); };   2 动态拼接json中的key和value //动态拼接json的key和value数据 /** * json :json变量名字的字符串 key: key值 value: value值 得到的值eval就可以了。 */ function dynamicJson(json,key ,value ){ ret ...
   1  按照下面方法自适应高度 2  替代方法 在引用iframe的页面中    1)页面加载的时候将页面可视区域的高度给iframe     2)当页面改变大小时候(事件为resize)将页面可视高度给iframe     3)iframe添加滚动条 style="overflow-x:hidden;overflow-y:auto"       //iframe 自动高度 function iframeautoHeight( iframeobj ){ if ( iframeobj.attachEvent) { iframeob ...
<title>树形效果</title> <style type="text/css"> ul li span{ cursor:pointer; } ul{ list-style:none outside none; } .expended{ list-style-image: url('daohang.jpg'); } .collapsed{ } </style> </head> <ul class="tree">   <li ...
<style type="text/css"> .menu{ position:relative; float:left; padding:0px; } ul{ list-style:none outside none; padding-left :2px; padding-bottom:0px; margin-bottom:0px; color: #999; background-color:rgb(204, 204, 204); height:30px; width: ...
parent.frames["frameName"].window.functionName(); frameName:IFrame的ID; funtionName:子页面中JS方法名; var obj = parent.frames["frameName"].window; 在父页面访问子页面中某个控件如:obj.document.getElementById('clientID') 子页面刷新父页面:top.window.location.replace(Url); $(window.frames["iframeC ...
<script type="text/javascript"> <!-- window.onbeforeunload = onbeforeunload_handler; window.onunload = onunload_handler; function onbeforeunload_handler(){ //if语句可以减少刷新页面 if (event.clientX>document.body.clientWidth && event.cl ...

css导航测试

    博客分类:
  • css
下划线 text-decoration:none .nav .hover{ background:url("http://java.g12e.com/project/wenda/images/hover.gif") no-repeat; color:rgb(21,130,1); margin-top:3px; } .nav li{ float:left;/ ...
Global site tag (gtag.js) - Google Analytics