/* Author:yuclCreateDate:2015-09-28FunctionName:FuncTaskNORemark: Description:获取任务编号Version:V1.0 */ALTER FUNCTION FuncTaskNO(@TaskNO varchar(30)) retu...
分类:
其他好文 时间:
2015-09-29 11:12:46
阅读次数:
127
【WSAStartup function】ParameterswVersionRequested[in]The highest version of Windows Sockets specification that the caller can use. The high-order byte ...
分类:
其他好文 时间:
2015-09-29 11:11:52
阅读次数:
216
在jQuery库中,$就是jQuery的一个简写形式,例如$("#foo")和jQuery("#foo")是等价地,$.ajax和jQuery.ajax是等价的。$document.ready(function(){ //...});执行时机:网页中所有DOM结构绘制完毕后就执行,可能DOM元素关....
分类:
Web程序 时间:
2015-09-29 09:53:36
阅读次数:
190
toDom方法用来将html标签字符串转化成DOM节点。1.7之后toDom方法被分配到了dom-construct模块。require(["dojo/dom-construct"], function(domConstruct){ // Take a string and turn it...
分类:
其他好文 时间:
2015-09-29 06:31:03
阅读次数:
878
1.$.proxy(fn,context)2.$(window).scrollTop()3.requirejs:定义一个模块define([],function(){写一个构造函数+原型return {xxx:构造函数}});在使用的时候,var x = new x.xxx({xxxx})defin...
分类:
其他好文 时间:
2015-09-28 22:21:41
阅读次数:
309
数字信号处理应用的几个基本序列:1 单位样本序列function mainImseq()clccleardisp('生成抽样序列');y=imseq(1,1,5); %调用样本函数,此时序列下标以1开头(1~5之间5个数,下标为1的抽样值为1)%子函数imseq:抽样函数function [x...
分类:
其他好文 时间:
2015-09-28 22:20:06
阅读次数:
273
$a = 10;$a = 20;$b = 5;const VALUE = 100;define('NUM',200);$c = $a+$b+VALUE+NUM;echo $c;function getLevel($score){ if($score>90){ return 'ex...
分类:
Web程序 时间:
2015-09-28 22:16:26
阅读次数:
176
1 对一维函数的求导及求特定函数处的变量值%%最简单的一阶单变量函数进行求导function usemyfunArray() %主函数必须位于最上方clcclearsyms x %syms x代表着声明符号变量x,只有声明了符号变量才可以进行符号运算,包括求导。%f...
分类:
其他好文 时间:
2015-09-28 22:07:14
阅读次数:
197
Javascript中装载XML文档 装载同域的XML文件 装载一段表示XML的字符串 装载的js代码 function loadXML(flag,xmldoc){
if(window.ActiveXObject){
//IE浏览器
var activexName=["MSXML...
分类:
Web程序 时间:
2015-09-28 21:05:01
阅读次数:
223
html-拖拽(draggable="true")拖拽的7个事件:> 拖拽块.ondragstart=function(){console.log("拖拽开始");}> 拖拽块.ondrag=function(){console.log("拖拽中");}> 拖拽块.ondragend=functio...
分类:
Web程序 时间:
2015-09-28 20:44:11
阅读次数:
208