码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
LeetCode_Nim Game
JavaScript/*** @param {number} n* @return {boolean}*/var canWinNim = function(n) {if(n % 4 == 0){return false;}else{return true;}};拓游戏:n个石子,一次最多拿m个棋子;...
分类:其他好文   时间:2015-10-18 00:57:35    阅读次数:201
TdxAlertWindowManager右下角HINT显示控件
带爱像的右下角HINT显示,自动隐藏function alterInfo: TdxAlertWindowManager;begin if not Assigned(Falter) then begin Falter := TdxAlertWindowManager.Create(nil); end;...
分类:Windows程序   时间:2015-10-17 22:09:33    阅读次数:380
夺命雷公狗jquery---1选择元素的3种方法
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <title></title> <scriptsrc="js/jquery.js"></script> <script> window.onload=function(){ document.getElementById(‘btnok‘).onclick=function..
分类:Web程序   时间:2015-10-17 19:24:15    阅读次数:177
EasyUI - pagination 分页组件
总页数是手动填写,后续进行更改………………效果:html代码:--%>JavaScript代码:$(function () { //panel组建,用来显示分页数据 $('#p').panel({ title: '显示数据', href: '../Json/P...
分类:其他好文   时间:2015-10-17 19:08:08    阅读次数:218
EasyUI - SearchBox 搜索框
效果:html代码: 所有频道 新闻频道JavaScript代码:$(function () { $('#ss').searchbox({ width:300, menu: '#mm', prompt: '请输入搜索内容…………', ...
分类:其他好文   时间:2015-10-17 19:02:31    阅读次数:156
Jquery闪烁提示特效
样式:.red{ border:1px solid #d00; background:#ffe9e8; color:#d00;} function shake(ele,cls,times){ var i = 0,t= false ,o =ele.attr("cla...
分类:Web程序   时间:2015-10-17 17:51:39    阅读次数:172
回车键完全替代模拟鼠标单击事件
转载请声明出处 http://www.cnblogs.com/datougui/p/4887655.htmlvar target = document;//声明一个变量target专门用来存放鼠标所在的dom元素document.onkeydown = function(event){ var...
分类:其他好文   时间:2015-10-17 17:37:57    阅读次数:133
leetcode 1 Two Sum(查找)
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2015-10-17 17:34:39    阅读次数:262
20151012jq4
1、获取/设置元素的文本内容/html内容你好 $("#btn").click(function () { $("#d1").text("你好"); $("#d1").html("你好”); }); $("#btn").click(functi...
分类:其他好文   时间:2015-10-17 17:30:31    阅读次数:210
php 魔术方法 __debugInfo()
array?__debugInfo?(?void?) 该方法在var_dump()类对象的时候被调用,如果没有定义该方法,则var_dump会打印出所有的类属性 示例: class?C?{ ????private?$prop; ????public?function?__const...
分类:Web程序   时间:2015-10-17 16:20:47    阅读次数:193
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!