先看看以下的代码 以上 ^ : 一开始会显示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
<?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
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
//===作用链域======var color = "blue";/*function changeColor(){ if(color=="blue"){ color ="red"; }else{ color="yellow"; }}changeColor();alert("Color is .....
分类:
编程语言 时间:
2014-09-04 14:42:59
阅读次数:
169
$(document).ready(function() { $("a.topLink").click(function() { $("html, body").animate({ scrollTop: $($(this).attr("href")).off...
分类:
Web程序 时间:
2014-09-04 14:40:29
阅读次数:
160
-- 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
原文地址: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