码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
DateTime Related Functions
The Oracle/PLSQL TO_DATE function converts a string to a date.TO_DATE( string1, [ format_mask ], [ nls_language ] )Parameters or Argumentsstring1 is t...
分类:其他好文   时间:2014-08-05 00:02:48    阅读次数:305
构建web应用
一、web服务器示例var http = require('http');http.createServer(function(req, res){ res.writeHeader(200, {Content-Type : 'text/plain'}); res.end('hello w...
分类:Web程序   时间:2014-08-05 00:01:58    阅读次数:417
js 动态修改css文件
_.find(document.styleSheets[4].cssRules,function(cssRule){ if(cssRule.selectorText && cssRule.selectorText.indexOf(".navbar-fixed-top2")>-1){ cssRule.style.position=""; cssRule.style.top = ...
分类:Web程序   时间:2014-08-04 21:46:58    阅读次数:363
SRBF Lighting
SRBF的全称是Spherical Radial Basis Function,我擅自翻译为球面放射基底函数。因为SRBF并不怎么出名,相对来说,SH(Spherical Harmonic)球谐函数更为出名(出现的也更早),而且在很多绘制引擎里用的也是SH,而不是SRBF。网上关于SRBF的资料也很少,这里写关于SRBF的文章,主要是针对对SRBF有兴趣的同学,一起探讨一下SRBF...
分类:其他好文   时间:2014-08-04 21:32:18    阅读次数:418
PHP中spl_autoload_register函数的用法
spl_autoload_register(PHP 5 >= 5.1.2)spl_autoload_register — 注册__autoload()函数说明bool spl_autoload_register ([ callback $autoload_function ] )将函数注册到SPL ...
分类:Web程序   时间:2014-08-04 21:26:09    阅读次数:296
call_user_function()方法的使用
call_user_func ( callback $function [, mixed $parameter [, mixed $... ]] ) 调用第一个参数所提供的用户自定义的函数。返回值:返回调用函数的结果,或FALSE。example:Php代码 调用类的内部方法:Php代码 ...
分类:其他好文   时间:2014-08-04 21:22:37    阅读次数:334
两种 js下载文件的方法(转)
function DownURL(strRemoteURL, strLocalURL){ try{ var xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP"); xmlHTTP.open("Get...
分类:Web程序   时间:2014-08-04 21:19:28    阅读次数:241
JS 中获得根目录
/*** * 获得根目录 * @returns */function getRootPath() { var strFullPath = window.document.location.href; var strPath = window.document.location.pathn...
分类:Web程序   时间:2014-08-04 21:17:07    阅读次数:262
__builtin_constant_p
int __builtin_constant_p (exp); You can use the built-in function __builtin_constant_p to determine if a value is known to be constant at compile-time...
分类:其他好文   时间:2014-08-04 21:14:17    阅读次数:193
easyui 实现Tooltip
$('#btnAddr').tooltip({ content: $(''), //弹出收件地址 showEvent: 'mouseover', onUpdate: function (cc) { cc....
分类:其他好文   时间:2014-08-04 21:12:47    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!