转:common.js 常用js公共函数库】的更多相关文章

*  global.func.php 公共函数库 /** * 返回经addslashes处理过的字符串或数组 * @param $string 需要处理的字符串或数组 * @return mixed */function new_addslashes($string) /** * 返回经stripslashes处理过的字符串或数组 * @param $string 需要处理的字符串或数组 * @return mixed */function new_stripslashes($string) /…
1. JS自定义加密解密函数,及用法 function compile(code) { )+code.length); ;i<code.length;i++){ c+=String.fromCharCode(code.charCodeAt(i)+code.charCodeAt(i-)); } return escape(c); } function uncompile(code) { code=unescape(code); )-code.length); ;i<code.length;i++…
首先引入Db类 或者是模型 use think\Db; 然后写公共函数 function getUserName($id){ return Db::table('zh_user')->where('id',$id)->value('name'); } 当然了也可以套一个壳判断有没有这个函数 function_exists(); 完整版 //根据用户主键的id,查询用户名use think\Db; if(!function_exists('getUserName')){        funct…
常用的C/C++函数库, cstdio(stdio.h) 标准输入输出库.C Standard Input and Output Library 1. 实例 #include <cstdio> int main(){ FILE * pfile; ]; ;i<=;i++){ //用sprintf把文件(包括相对路径)的名字放到char1里面 sprintf(char1,"rename/%d.txt",i); //用w方式建立文件 pfile=fopen(char1,&q…
第三方函数库(译者注:包括第三方提供的 SDK,开源函数库)以惊人的方式助力着 Android 开发,借助这些其他开发人员辛勤工作的成果,我们开发起来更轻松和快捷.目前存在成千上万的函数库,如何选择正确的函数库非常关键,本文就是这样的一个总结. Animation Android View Animations 1 :一个强大的 View 动画函数库,方便使用者很容易地实现各种 View 的动画效果. RecyclerView Animators 2 :专门为 RecyclerView 实现多种…
转自其他博主,自己开发备用 var h = {}; h.get = function (url, data, ok, error) { $.ajax({ url: url, data: data, dataType: 'json', success: ok, error: error }); } h.post = function (url, data, ok, error) { $.ajax({ url: url, data: data, type: 'post', dataType: 'js…
JS选取DOM元素的方法注意:原生JS选取DOM元素比使用jQuery类库选取要快很多1.通过ID选取元素document.getElementById('myid');2.通过CLASS选取元素document.getElementsByClassName('myclass')[0];3.通过标签选取元素document.getElementsByTagName('mydiv')[0];4.通过NAME属性选取元素(常用于表单)document.getElementsByName('mynam…
document.createElement("div"): 创建一个div元素申明一个变量 document.body.appendChild(div);   将创建好的div添加到body中 div3.appendChild(a); 将创建好的a标签加入到div中 var li = document.querySelectorAll(".users-mini li");  找到所有的class相同的对象 txt2.removeAttribute("st…
一.兼容地获取非行间样式(兼容火狐,ie,chrome) function getStyle(obj,name) { if(obj.currentStyle){ return obj.currentStyle[name]; }else{ return getComputedStyle(obj,false)[name]; } } //调用 window.onload=function () { var oDiv=document.getElementById('div1'); alert(getS…
1.替换js地址栏参数值 //destiny是目标字符串,比如是http://www.huistd.com/?id=3&ttt=3 //par是参数名,par_value是参数要更改的值,调用结果如下: //changeURLPar(test, 'id', 99); // http://www.huistd.com/?id=99&ttt=3 //changeURLPar(test, 'haha', 33); // http://www.huistd.com/?id=99&ttt=3…