function filterFunc($str){ //return RemoveXSS(HtmlReplace(iconv('utf-8', 'gb2312', $str))); return RemoveXSS(HtmlReplace($str));}//遍历function FilterAr...
分类:
其他好文 时间:
2014-08-26 22:46:36
阅读次数:
219
第一章,概述这章是综述性质的,作者随意的给出了一些例子。1. visibility = hidden, display = none。function hide (e, reflow) { if (reflow) { e.target.style.display ...
分类:
其他好文 时间:
2014-08-26 22:40:36
阅读次数:
349
从事了一段时间的前端开发,今天写了一个数组去重,并统计最多项的方法,目前只支持数组的项都是数字。由于本人能力有限,希望能得到网友的指正!如有问题或者更好的实现思路,也欢迎大家和我讨论!代码如下:function getMax(arr){ var obj = {}, l = arr.length, ....
分类:
Web程序 时间:
2014-08-26 21:14:56
阅读次数:
239
1.自定义指令 .directive("dyName", [
function() {
return {
require: "ngModel",
link: function(scope, elm, iAttrs, ngModelCtr) {
ngModelCtr.$n...
分类:
Web程序 时间:
2014-08-26 20:02:57
阅读次数:
309
一. DAO实现分页. [Controller层] public?function?actionReport()
????{
????????$sql?=?"select?remitdate,?sum(rate)?sumrate?from?td_delivery?
????????????group?by?r...
分类:
其他好文 时间:
2014-08-26 20:01:16
阅读次数:
261
function formatCardNo(cardNo){ var result = [],len = cardNo.length; var j = 0; for(var i = 0 ; i < len;i++){ if(cardNo[i] == " "){ continue; } j...
分类:
编程语言 时间:
2014-08-26 19:37:56
阅读次数:
266
function setCookie(name, value, expires, path, domain, secure){ var cookieName = encodeURIComponent(name) + '=' + encodeURIComponent(value); if(...
分类:
其他好文 时间:
2014-08-26 19:28:36
阅读次数:
265
function addEvent(obj,type,fn){ if(obj.addEventListener){ obj.addEventListener(type,fn,false); }else if(obj.attachEvent){ obj.atta...
分类:
Web程序 时间:
2014-08-26 19:28:16
阅读次数:
135
document.onkeydown=function(event){ var e = event || window.event || arguments.callee.caller.arguments[0]; if(e && e.keyCode==27){ // 按...
分类:
其他好文 时间:
2014-08-26 19:20:26
阅读次数:
235
贴个代码先:function O(user,pwd){ //use constructorthis.user=user;this.pwd=pwd;this.get=get;return this;}function O2(user,pwd){ //use factoryvar obj=new Obj...
分类:
Web程序 时间:
2014-08-26 19:16:46
阅读次数:
199