JS
a1008223
这个作者很懒,什么都没留下…
展开
-
js刷新父页面
1.window showMadialog,刷新父页面,关闭自己,原来使用reload无效,改成下面即可 window.dialogArguments.location.href=window.dialogArguments.location.href;原创 2011-09-30 13:46:39 · 107 阅读 · 0 评论 -
kendo ui export all pdf
http://www.telerik.com/forums/export-all-pages-to-pdf http://docs.telerik.com/kendo-ui/web/grid/print-export原创 2015-08-18 17:20:34 · 220 阅读 · 0 评论 -
websocket 不同的聊天框显示
easui tab 打开相同的表单,生成动态的 div,根据div id 提交不同的界面。 1.Open.jsp 选择聊天成员后,动态生成组,传给后台 发送消息 var index = 0; function addPanel(){ index++ var fro...原创 2016-05-16 22:48:47 · 391 阅读 · 0 评论 -
angular js开发文档
http://docs.ngnice.com/guide/introduction原创 2015-03-23 17:32:33 · 305 阅读 · 0 评论 -
blog book
http://blog.jobbole.com/707/原创 2013-02-18 13:48:14 · 103 阅读 · 0 评论 -
ie 8 text-align :center 居左
在第2个div里面加上 既可以居中 margin: 0 auto; position:relative原创 2013-01-16 17:52:48 · 149 阅读 · 0 评论 -
js hashtable checkbox判断
Array.prototype.remove=function(i){ if(isNaN(i) || i=this.length){ return ; } var rv=this[i]; for(;i原创 2011-12-09 13:41:51 · 94 阅读 · 0 评论 -
浏览器缓存和frame页面css失效
原创 2011-11-15 14:15:51 · 172 阅读 · 0 评论 -
js动态增加行
function Reset() { var f = document.forms[0]; alert(f.id); f.reset(); } function getTD() { var newtd = document.createElement("td"); newtd.setAttribute("a...原创 2012-01-05 09:40:53 · 159 阅读 · 0 评论 -
人民币大小写转换
function convertCurrency(currencyDigits) { // Constants: var MAXIMUM_NUMBER = 99999999999.99; // Predefine the radix characters and currency symbols for output: var CN_ZERO = "...原创 2011-11-03 14:32:02 · 153 阅读 · 0 评论 -
css页面只读
input{ readonly:expression(this.readOnly=true); } textarea{ readonly:expression(this.readOnly=true); } a{ onclick:expression(this.onclick=function(){ ...原创 2011-10-08 10:33:41 · 750 阅读 · 0 评论 -
Issue using h:commandLink with rendered attribute
http://www.coderanch.com/t/522186/JSF/java/commandLink-rendered-attribute原创 2014-11-21 10:41:23 · 208 阅读 · 0 评论