function checkTime(){ var
dateInp=$("#dateInp").val(); var day1=Date.parse(dateInp.replace(/-/g, "/"));
var nowDate = new Date(); var date...
分类:
其他好文 时间:
2014-06-04 18:53:52
阅读次数:
277
### 本文接着上一篇讲---###
回顾上次说到了rootScope里的$watch方法中的解析监控表达式,即而引出了对parse的分析,今天我们接着这里继续挖代码.###
$watch续先上一块$watch代码$watch: function(watchExp, listener, object...
分类:
Web程序 时间:
2014-05-28 16:36:45
阅读次数:
436
大家在看angular的时候,有时候偶尔会看到$parse,$eval和$observe,$watch这两对语法,随着深入使用angular,就不可避免使用到它。文章从内部运行机制跟实际需求的角度来解释这两对语法的区别。原理$parse和$eval首先,$parse跟$eval都是用来解析表达式的,...
分类:
其他好文 时间:
2014-05-28 02:24:47
阅读次数:
253
Process of generating API documentation?
Writing specially formatted code blocks? Running a tool to parse the code and
the comments? Publishing the re...
分类:
编程语言 时间:
2014-05-27 17:52:43
阅读次数:
434
private void installApk(String fileUri) { Intent
intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + fileUr...
分类:
移动开发 时间:
2014-05-26 17:36:26
阅读次数:
290
发送短信的方法有两种方法可以实现发送短信,其一是使用intent-startActivity,URI数据格式为"smsto:num",调用的action为Intent.ACTION_SENDTO:Uri
uri = Uri.parse("smsto:5554");Intent it = new In...
分类:
移动开发 时间:
2014-05-26 00:37:31
阅读次数:
406
1 前端向后端传参1.1 普通方式传参1.1.1
页面参数需要解析成json对象;JSON.parse(JSON.stringify(query))$.getJSON("${serverUrl}/store/brand/getBrand",
JSON.parse(JSON.stringify(que...
分类:
编程语言 时间:
2014-05-25 15:13:39
阅读次数:
451
day1='2014-03-31 00:00:01';function get_day(day1,day2){
var s = day1;
var dt = Date.parse(s.replace(/-/g,"/"));
var day1 = new Date(dt);
var s = day2;
var dt = Date.parse(s.replace(/-/...
分类:
Web程序 时间:
2014-05-22 17:29:10
阅读次数:
332
1.打电话 可以自己写界面,在button的单击事件中添加如下代码即可: Intent intent
= new Intent(); intent.setAction("android.intent.action.CALL");
intent.setData(Uri.parse("tel:"+ .....
分类:
移动开发 时间:
2014-05-22 16:41:15
阅读次数:
473
一个小题目,模拟stof()功能,网上答案很多,但是感觉都不够简洁。主要是整数部分和小数部分实现由一定区别,这里尝试不区分整数和小数部分,先忽略小数点,然后最后在做一个除操作。比如输入:100.123,先转换为100123,然后除1000#include
#include #include #inc...
分类:
其他好文 时间:
2014-05-22 14:45:04
阅读次数:
242