AngularJS官网地址:http://angularjs.org/AngularJS入门教程:http://www.ituring.com.cn/minibook/303说明:比较基础,是官方Tutorial的翻译AngularJS开发指南:http://angularjs.cn/T008?p=...
分类:
Web程序 时间:
2014-05-09 11:37:17
阅读次数:
337
https://code.angularjs.org/1.1.0/docs/#!/api
js父节点:parentNode;子节点:childNode firstChild;
lastChild;function func(o){//alert(o.parentNode.nextSibling.nextSibling.lengh);
my=o.parentNode.parent...
分类:
其他好文 时间:
2014-05-08 22:20:42
阅读次数:
269
表值函数就是返回table 的函数使用它可以方便的进行查询的处理创建的代码如下:create
FUNCTION returunclassfirstlist(-- Add the parameters for the function
here)RETURNS TABLE ASRETURN (-- A...
分类:
数据库 时间:
2014-05-08 22:00:43
阅读次数:
454
var CartListViewModel = function () { var self =
this; self.payment = [ { name: "", value: 1 }, ...
分类:
Web程序 时间:
2014-05-08 21:50:03
阅读次数:
374
1、技术解决方案--------->(widget/event/ajax)->function->data------>XMLHttpRequest----->Server1、业务流程------------》通过技术的解决方案来实现。不管是什么业务流程,技术都是可以实现的。
分类:
其他好文 时间:
2014-05-08 21:48:39
阅读次数:
284
最近总是写滚动图效果,重复的劳动后,决定写一个滚动图的封装插件。结果写完后在其他浏览器都可以用,却IE7下毫无反应。反复测试各种检查后,发现竟然是在参数对象最后一个属性后多加了个逗号,结果就死在了IE7下,吐血啊,也感慨下自己的基本功不扎实啊。define(function(require){
//...
分类:
其他好文 时间:
2014-05-08 21:36:31
阅读次数:
273
Load var data = []; var viewModel = { vendors:
ko.observableArray(data)};ko.applyBindings(viewModel);$(function () { // on this
click event, ...
分类:
其他好文 时间:
2014-05-08 21:03:59
阅读次数:
282
1 jQuery.fn.single_double_click =
function(single_click_callback, double_click_callback, timeout) { 2 return
this.each(function(){ 3 var clicks...
分类:
数据库 时间:
2014-05-08 20:54:46
阅读次数:
373
HAVING 子句在 SQL 中增加 HAVING 子句原因是,WHERE
关键字无法与合计函数一起使用。SQL HAVING 语法SELECT column_name,
aggregate_function(column_name)FROM table_nameWHERE column_name ...
分类:
其他好文 时间:
2014-05-08 20:48:01
阅读次数:
311