angular.module('myApp', []) .directive('myDirective', function() { return { restrict: 'A', replace: true, scope: { ...
分类:
Web程序 时间:
2015-06-15 18:36:54
阅读次数:
129
启动tomcat时,tomcat可以直接运行,而debug时弹出解决方法:打开360安全卫士的功能大全找到修复网络(LSP)点击立即修复就可以使用debug
分类:
系统相关 时间:
2015-06-15 18:35:48
阅读次数:
183
经历了俩个星期,易买网项目如期完工,现在总结一下如何使用cookies实现浏览商品的历史记录。第一步:创建商品实体类。第二步:连接oracle数据库。第三步:创建商品三层架构。效果图:在要显示 的地方加入核心代码:最近浏览 0){ ...
分类:
其他好文 时间:
2015-06-15 18:37:59
阅读次数:
159
iOS系列教程之TextKit实现图文混排读后记前两天看搜狐家明哥写的《TextKit实现图文混排》 今晚回家看了下API发现了一个更加取巧的实现方式.可以直接将后台返回的html富文本用textView显示出来. 记得两年前当时做这个的时候还是借助了笨重的webview.> Textkit是iOS...
分类:
移动开发 时间:
2015-06-15 18:37:55
阅读次数:
398
SpringMVC里面有许多HandlerMapping,对这块还不太了解,所以决定了解一下这些东东的作用。先来看第一个:org.springframework.web.servlet.handler.SimpleUrlHandlerMapping官方的api文档解释如下:Implementatio...
分类:
移动开发 时间:
2015-06-15 18:36:44
阅读次数:
261
JSON.parse()和JSON.stringify()
分类:
Web程序 时间:
2015-06-15 18:34:27
阅读次数:
125
做移动端页面时,设计稿中的切片图片往往是实际的2倍,此处记录图片正常显示大小的技巧。当图片是单张的话,可以对容器设计实际大小,然后设置background-image,为了让图片缩小一倍,可以设置background-size:contain;如:图片尺寸是20*20,但是在移动端页面显示的则是10...
分类:
移动开发 时间:
2015-06-15 18:36:51
阅读次数:
135
一、GuavaGoogle的基于java1.6的类库集合的扩展项目,包括collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O等等. 这些高...
分类:
移动开发 时间:
2015-06-15 18:36:06
阅读次数:
182
$().ready(function(){ var msn=window.location.search; //location.search是从当前URL的?号开始的字符串 a=1&b=1 var args=msn.split("?"); var strs=args[1]; var str=s.....
分类:
其他好文 时间:
2015-06-15 18:36:02
阅读次数:
91
setContentView(R.layout.activity_main); Button b2 = (Button)findViewById(R.id.myButton2); setContentView(R.layout.fragment001...
分类:
其他好文 时间:
2015-06-15 18:33:51
阅读次数:
102
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @endViewController.m 1 #import "ViewController.h" 2 #import "KMSwitch...
分类:
其他好文 时间:
2015-06-15 18:36:47
阅读次数:
117
最近一直有一件事困惑着我——怎么样才能高效的让团队只专注于业务或者说产品。 当然这是一个很大的话题。所以我先找到了一个切入点:怎么样使用软件才能更高效。希望先把客观存在的问题先解决。 首先,软件是为了解决真正问题而存在于团队的。所以哪些软件才是团队真正需要的,必须先从团队真正存在的问题来...
分类:
其他好文 时间:
2015-06-15 18:35:08
阅读次数:
108
#include #include #include#define pi acos(-1)int main(){ int D,v; while(scanf("%d %d",&D,&v) != EOF && D) { printf("%.3f\n",pow(D*D*D-...
分类:
其他好文 时间:
2015-06-15 18:34:08
阅读次数:
87
在css文件中,我们常看到有些字体名称变成了乱码,这是由于网页开发者将中文字体的名字直接写成了中文,而css文件本身没有声明字符编码方式,查看时就出现了乱码。为了避免这种乱码状况出现,可以将css文件存为UTF-8 编码,在css文件开头添加以下语句:@charset "utf-8"。或者在设置cs...
分类:
Web程序 时间:
2015-06-15 18:33:47
阅读次数:
204
有这样一个场景存在一个model类如果User,这里省略了getter/setter方法class User { String name; String uuid; Long created; Long updated; Attr attr;}class Attr { ...
分类:
Web程序 时间:
2015-06-15 18:35:26
阅读次数:
139
主要代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.T...
分类:
编程语言 时间:
2015-06-15 18:35:05
阅读次数:
134
1.location 对象// 假设当前url是 http://localhost/rpc/plugin.php#hash?a=aaa&b=bbbalert(window.location.hash);// #hashalert(window.location.hostname);// localh...