码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
angular : direative : scope | 指令scope里的符号@,=
先看看以下的代码 以上 ^ : 一开始会显示ABC,2秒后会显示XYZ。*外面可以同步内部 app.controller("ctrl", function ($scope, $timeout) { $scope.name = "ABC"; ...
分类:其他好文   时间:2014-09-04 16:30:59    阅读次数:313
分享到微信时如何自定义文字描述和图片
document.addEventListener("WeixinJSBridgeReady", function() { if (WeixinJSBridge) { //分享给好友 WeixinJSBridge.on("menu:share:appmessage", function() { W....
分类:微信   时间:2014-09-04 16:17:09    阅读次数:374
不知道这是phpcms系统的错误还是php的错误,还是我自身的错误
<?php defined(‘IN_PHPCMS‘) or exit(‘No permission resources.‘); pc_base::load_app_func(‘global‘); class index{ private $db; private $content_db; private $order_db; public function __constr...
分类:Web程序   时间:2014-09-04 15:11:19    阅读次数:204
Jquery validate 验证
1 必填和远程校验 $("#inputForm").validate({ rules: { "username": "required", "loginid": { remote: { type: "post", url: "${ctx}/user/isUniCode.do", data: { code: function() { r...
分类:Web程序   时间:2014-09-04 14:56:39    阅读次数:233
图片的预加载的一些潜在问题
今天看到了一章关于图片预加载的博文,其代码如下:function loadImage(url, callback) { var img = new Image(); //创建一个Image对象,实现图片的预下载 img.src = url; ...
分类:其他好文   时间:2014-09-04 14:47:59    阅读次数:172
JavaScript学习笔记(二)
//===作用链域======var color = "blue";/*function changeColor(){ if(color=="blue"){ color ="red"; }else{ color="yellow"; }}changeColor();alert("Color is .....
分类:编程语言   时间:2014-09-04 14:42:59    阅读次数:169
JQUERY点击滚动到锚点
$(document).ready(function() { $("a.topLink").click(function() { $("html, body").animate({ scrollTop: $($(this).attr("href")).off...
分类:Web程序   时间:2014-09-04 14:40:29    阅读次数:160
手势跟踪论文学习:Realtime and Robust Hand Tracking from Depth(三)Cost Function
手势跟踪CVPR2014论文学习...
分类:其他好文   时间:2014-09-04 13:24:49    阅读次数:162
lua使用io.open跨平台文件夹遍历匹配查找
-- Desc :实现在LUA_PATH中的lua文件中遍历寻找没用到PNG_PATH路径下的png图片,并将其打印出来。 -- Date :12:49:28 2014-09-04 1 print("Lua Script Start") 2 3 function getFileName( ...
分类:其他好文   时间:2014-09-04 13:11:59    阅读次数:319
C++11 thread::join(4)
原文地址:http://www.cplusplus.com/reference/thread/thread/join/ public member function std::thread::join void join(); Join thread The function returns when the thread execution ha...
分类:编程语言   时间:2014-09-04 11:50:40    阅读次数:217
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!