js
文章平均质量分 53
iteye_11997
这个作者很懒,什么都没留下…
展开
-
dgrid之Grid Pagination 集成分页 后台rest service
dgrid之Grid集成分页 后台rest service 前台代码<script type="text/javascript">define.amd.jQuery = true;require([ "jquery", "dstore/Rest", "dstore/Cache", "dstore/Tra...2015-05-19 13:09:49 · 208 阅读 · 0 评论 -
js 正则表达式语法
正则表达式语法转义符 说明 一般字符 除 .$ ^ { [ ( | ) * + ? \ 外,其他字符与自身匹配。 字符 含意 \ 做为转意,即通常在"\"后面的字符不按原来意义解释,如/b/匹配字符"b",当b前面加了反斜杆后/\b/,转意为匹配一个单词的边界。 -或- 对正则表达式功能字符的还原,如"*"匹配它前面元字符0次或多次,/a*/将匹配a,aa,aaa,加了"\"后,/a\...原创 2009-09-29 14:55:37 · 137 阅读 · 0 评论 -
json lib 只转换我要的属性 There is a cycle in the hierarchy!
更新一下 如果你的数据时用hibernate读出来的,有时候是你想要的那个类的一个动态代理子类,这时会多出很多属性,这时可以用 JsonConfig config = new JsonConfig(); config.setJsonPropertyFilter(new PropertyFilter() { public boo...2009-09-19 17:27:40 · 109 阅读 · 0 评论 -
转 document.body和document.documentElement,document.compatMode的关系
转自 http://www.seobye.com/div-css/90 对于document.compatMode,很多朋友可能都根我一样很少接触,知道他的存在却不清楚他的用途。其实这个对于我们开发兼容性的web页面还是很有帮助,我们都知道,盒模型的渲染在 Standards Mode和Quirks Mode是有很大差别的,在不声明Doctype的情况下,浏览器默认是Qui...2010-04-04 22:51:07 · 167 阅读 · 0 评论 -
转 document.documentElement与document.body
原来HTML里是document.bodyXHTML里是document.documentElement都指的是<body>节点(OR元素)可以这样兼容:function getBodyObj(){return (document.documentElement) ? document.documentElement : document.body ;...2010-04-04 22:35:06 · 139 阅读 · 0 评论 -
js 压缩 中文
今天试用了几个压缩js的工具,尤其是dojo的shrinksafe以及yuicompressor,以及jsmin ,测试以后个人觉得压缩效果差不多,但是yuicompressor在解决utf8编码的乱码问题上更加容易。如果你的js脚本是utf8的,那么在转换的时候要加上 charset java -jar yuicompressor-2.4.2.jar --charset utf...原创 2009-09-11 15:44:25 · 251 阅读 · 0 评论 -
window.onbeforeunload window.onunload
window.onbeforeunload=function() { return "你确定要退出本系统吗?"; } window.onunload=function(){ if(PL && PL.sessionId){ Ext.Ajax.request({ url : '../message.do?method=...2009-09-11 14:48:11 · 257 阅读 · 0 评论 -
js 访问 iframe 内部 的元素 设置成 透明
代码self.frames['iit'].document.all.iframe_pic.style.background = 'url(img/handOff.gif) no-repeat'; 页面引用的iframe<iframe id='iit' scrolling="no" src='pic.html' style=" position: absolute;...2009-09-10 15:00:31 · 136 阅读 · 0 评论 -
IE version
<!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>&原创 2009-09-08 15:27:03 · 91 阅读 · 0 评论 -
js 获取屏幕 分辨率
alert("你的分辨率"+screen.width+"*"+screen.height)原创 2009-08-19 16:08:56 · 130 阅读 · 0 评论 -
js 替换 / 为 \/
node.xml.replace(/\//ig,"\\\/") 为了服务器端java能把字符串转换为xml对象2009-08-14 10:45:37 · 178 阅读 · 0 评论 -
JavaScript 时间 格式 转换 及 Date对象 总结
1、当前系统区域设置格式(toLocaleDateString和toLocaleTimeString)例子:(new Date()).toLocaleDateString() + " " + (new Date()).toLocaleTimeString()结果: 2008年1月29日 16:13:112.普通字符串(toDateString和toTimeString)例子: (new Date(...原创 2009-08-13 08:59:40 · 115 阅读 · 0 评论 -
IE6 or IE7
<!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>&原创 2009-08-10 14:23:31 · 110 阅读 · 0 评论 -
XMLHttpRequest post 提交 数据
XMLHttpReq.open("POST", "/formservlet", false); content='Id=' + Id + '&Name=' + Name + '&No=' + No; XMLHttpReq.setRequestHeader("Content-Type", "application/x-www-f...原创 2009-07-31 10:29:53 · 152 阅读 · 0 评论 -
js 测试 用户名 中文 英文 数字 判断 函数 是否 存在
/^((\w)|([\u4E00-\u9FA5])){1,20}$/.test(accountName) if( typeof customAction == "function" ){ customAction(data); }原创 2010-11-03 20:24:15 · 128 阅读 · 0 评论 -
jQuery name checked 模糊查找匹配ID
("div[name='jobTitle']") $("#aDiv").find("input[type='checkbox']:checked").each(function() { $toRemove = $(this).parent().parent(); $toRemove.remove();...2010-04-28 19:19:51 · 389 阅读 · 0 评论 -
jqGrid 笔记 获取rowData colModel 不同类型字段 不同查询 定制cell 模板 横向卷轴...
定制cell 模板写一个自定义的format $("div.returnValue").live('click',function(){ alert($(this).attr("rel")); }); function custFormat( cellvalue, options, rowObject )...原创 2010-05-07 14:42:57 · 277 阅读 · 0 评论 -
angular 1.3.15 表达式bug
不确定这是 angular的还是浏览器的, chrome Version 41.0.2272.118 m, angular 1.3.15 有个表达式{{pageindex+1}} 一般情况好的,当pageindex=1111的时候 这个计算出来就会变成11111, 而不是需要的1112 解决办法 {{parseInt(pageindex)+par...2015-04-15 13:41:19 · 147 阅读 · 0 评论 -
How to use requirejs in client side
How to use requirejs in client side http://requirejs.org/ 1. in html<script data-main="js/main" src="js/require.js"></script>main.js is the entry point of our app logic...2016-12-05 16:27:40 · 252 阅读 · 0 评论 -
书上看来的js闭包列子
js闭包列子 <html><head> <title>js learn</title><script type="text/javascript">var curry = function (f) { alert("1111"); return function(a){ alert(&q2014-01-22 12:19:19 · 140 阅读 · 0 评论 -
犀牛书 & JavaScript Web Applications notes
https://www.evernote.com/shard/s20/sh/83c1aced-abdf-4866-a6a1-8f247815b5c2/eec821d6a4fb9940ff7deea4c190d713 数字类型是浮点型 常规数组用 数字 做下标 关联数组用 字符串 做下标 image.width 也可以 image...2012-10-20 22:10:46 · 129 阅读 · 0 评论 -
dojo get post demo
dojo.xhrGet({ url: "../api/category.do", handleAs: "json", load: function(response) { console.log("category.do result:"+response); }, e...2015-07-31 14:37:30 · 143 阅读 · 0 评论 -
jquery validate
function(){ $("#register_company_admin_form").validate({ rules:{ "completeUserDTO.company.name" :"required", "completeUserDTO.company.address.address1": "required", "co.原创 2011-05-05 18:44:42 · 113 阅读 · 0 评论 -
jqgrid 隔行变底色
jgrid默认配置没有 隔行变底色的选项查看源码 看他怎么给row添加class的 找到了addRowData 方法 addRowData : function(rowid,rdata,pos,src) { 。。。。。。。。。。 row = "<tr id=\""+rowid+...2011-10-20 19:07:29 · 753 阅读 · 0 评论 -
jquery取得text,areatext,radio,checkbox,select的值
jquery取得text,areatext,radio,checkbox,select的值,以及其他一些操作;1.假如我们有如下页面<input type="text" name="textname" id="text_id" value=""> ...原创 2010-07-09 18:21:50 · 113 阅读 · 0 评论 -
js 遍历对象属性
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html;2010-07-05 12:14:56 · 89 阅读 · 0 评论 -
jQuery 对Select的操作
语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$(...原创 2010-06-30 20:36:59 · 73 阅读 · 0 评论 -
国家地区 js 数组
envar geolocation= [["AO", "Angola"],["AF", "Afghanistan"],["AL", "Albania"],["DZ", "Algeria"],["AD", "Andorra"],["AI", "Anguil2010-06-30 19:06:53 · 2562 阅读 · 0 评论 -
点击其他地方隐藏popup窗口
现在系统有一个弹出的日期选择窗口, 要求在窗口弹出后, 点击窗口以外的地方,窗口要隐藏 解决方法代码 $("#dateimg").click( function(event){ new Calendar(null, null, 0).show($("#d...2011-12-14 16:54:27 · 1110 阅读 · 0 评论 -
colorbox
$.fn.colorbox.close(); $.fn.colorbox({innerWidth:800, innerHeight:500, inline:true, href:"#contentPopup"}); <script language="javascript" type="text/javascript" src="${js_path}/jquery.c...原创 2010-05-07 22:06:05 · 118 阅读 · 0 评论 -
js node 操作
Node往往被翻译为节点,在一个对象(可以简单的理解为是HTML页面中),一个属性name="aaa"可以是一个节点,一个< div id="aaa">……< /div>也可以是一个节点,在< body>……< /body>中的,也是一个大大的节点。下面是一些有关Node的属性和方法,并没有包含部分不兼容IE和FF内容的讲解。Node的属性介...原创 2009-07-27 13:56:05 · 105 阅读 · 0 评论 -
js div 显示 隐藏
document.getElementById('qq').style.display='block'document.getElementById('qq').style.display='none'原创 2009-07-24 12:00:06 · 107 阅读 · 0 评论 -
dojo.require
dojo.require("dojo.parser");//一定要放前面,不然dijit.dijit-all会报错 dojo.require("dojo.dnd.Moveable"); dojo.require("dojo.dnd.move"); dojo.require("dijit.dijit"); ...2009-05-21 22:27:00 · 154 阅读 · 0 评论 -
js content 折叠
.open{ background: url(../images/downArrow.gif);}.close{ background: url(../images/upArrow.gif);} .post_body { padding:5px 15px; }.post_bodyclose{ padding:5px 15px;height:100px; overflow:hid...2009-05-15 15:55:21 · 97 阅读 · 0 评论 -
dojo in google app
在 GAE上写Dojo应用,GAE有1000文件上传限制,虽然可以通过删除dojoroot下的dojox(不会用到),删除国际化文件,把文件数降低到1000以下(还要设置<resource-files> <exclude path="/dojoroot/**.*" /> <exclude path="/**.jpg" />...2009-05-13 11:34:51 · 99 阅读 · 0 评论 -
js 打开新窗口
/* * 打开新窗口 * f:链接地址 * n:窗口的名称 * w:窗口的宽度 * h:窗口的高度 * s:窗口是否有滚动条,1:有滚动条;0:没有滚动条 */function openWin(f,n,w,h,s){ sb = s == "1" ? "1" : "0"; l = (screen.width - w)/2; t = (screen.heig...2009-12-11 18:50:20 · 71 阅读 · 0 评论 -
子窗口 刷新父窗口
function closewindow(){ if(window.opener){ window.opener.location.reload(true); window.close(); }}非模态 刷新由打开的子窗口来控制关闭 ------------function closewindow(){ window.returnValue = true;...2009-12-11 18:42:56 · 109 阅读 · 0 评论 -
防盗链 判断自身是否顶级窗口
if(top.location!=self.location){ top.location = self.location; }2009-12-11 16:49:21 · 100 阅读 · 0 评论 -
for循环 闭包
a='xxxx'; for (var i = 0; i < o.length; i++) { (function() { var obj = o[i]; popMenu....2009-12-09 11:55:11 · 98 阅读 · 0 评论 -
jsonp 访问 douban api
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>client.html</title> <meta http-equiv="keywords" content="keywo2009-11-23 19:22:22 · 117 阅读 · 0 评论