问题:
在做马上赚钱时,会出现退出卡死,然后清理程序,再进入还是卡死界面的情况,百思不得其解,昨天在做push的时候,突然发现,在android里面弹出一个退出对话框,点击确定退出,这时候调用endtolua时,有时也会切入前台。PSNotificationCenter.addObserver(nil, "APP_ENTER_FOREGROUND", function() do
some...
分类:
其他好文 时间:
2014-08-19 11:04:24
阅读次数:
207
一、在鼠标点击的位置弹出框!function showBySite(event) {
var element = document.elementFromPoint(event.x, event.y);//获取点击对象
$.messager.showBySite({
title: 'My Title',
msg: 'Message.',
...
分类:
其他好文 时间:
2014-08-19 11:04:05
阅读次数:
184
<?php
function getweather($city){
$url="http://www.weather.com.cn/weather1d/".$city.".shtml";
$result=file_get_contents($url);
$arr=explode("",$result);
$arr1=explode("",$arr[1]);
$wt= mb...
分类:
Web程序 时间:
2014-08-19 09:26:13
阅读次数:
165
一、控制器 <?php if (!defined(‘BASEPATH‘)) ??? exit(‘No direct script access allowed‘); class Topics extends CI_Controller { ??? function __construct() ??? { ??????? parent::__cons...
分类:
数据库 时间:
2014-08-19 01:04:43
阅读次数:
309
Document对象的createElement(tagName)方法在HTML文档中不区分大小写,在XML文档中区分大小写.
所以可以写一下函数来判断文档是不是XML文件
function isXML() {
document.createElement('p').tagName !== 'P';
}...
分类:
其他好文 时间:
2014-08-18 23:36:43
阅读次数:
220
1.错的例子sexCombo.on("afterrender",function(){sexCombo.setValue(sexStore.getAt(0).data.code);});我不知道在某些情况下是否可以,但是我的combo的store是这样赋值的 /// /// 查看...
分类:
Web程序 时间:
2014-08-18 22:02:56
阅读次数:
207
1-2+3-4+......+m=(1-2)+(3-4)+...+[(m-2)-(m-1)]+m=-1+(-1)+(-1)+...+(-1)+m,一共有(m-1)/2个-1相加,再加上m,所以上式等于:(-1)*(m-1)/2+m代码:function sum(m as integer)sum=(-...
分类:
其他好文 时间:
2014-08-18 22:00:12
阅读次数:
232
var tips; var theTop = 10; /*这是默认高度,越大越往下*/var old = theTop;function moveTips() { var tt = 0; if (window.innerHeight) { pos = window.page...
分类:
移动开发 时间:
2014-08-18 20:20:22
阅读次数:
191
//这个是有什么作用来这忘了fopen('php://output','w');1.//demo zip格式的压缩文件上传function zqFileUpload($path,$proDir,$filename){ global $_configuration;// root_sys 得到项目的....
分类:
Web程序 时间:
2014-08-18 20:19:42
阅读次数:
204
function createComparisonFunction(propertyName){ return function(object1,object2){ var value1=object1[propertyName]; var value2=object2[prop...
分类:
其他好文 时间:
2014-08-18 20:03:52
阅读次数:
223