摘要: // Zepto.js// (c) 2010-2013 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.;(function($, undefined){ var prefix = '', eventPrefix, endEventName, endAnimationName, vendors = { Webkit: 'webkit', Moz: '', O: 'o' }, document = window.document, tes 阅读全文
posted @ 2013-12-23 15:05 sexy_girl 阅读(1671) 评论(0) 推荐(0) 编辑
摘要: // Zepto.js// (c) 2010-2013 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.;(function($){ // Create a collection of callbacks to be fired in a sequence, with configurable behaviour // Option flags: // - once: Callbacks fired at most one time. // - memory:... 阅读全文
posted @ 2013-12-23 15:01 sexy_girl 阅读(301) 评论(0) 推荐(0) 编辑
摘要: function checkPassword(username,password,callback){ var pwdHash; var queryStr = 'select * from user where username = ?'; db.query(queryStr,username,queryCallback); function queryCallback(err,result){ if(err) throw err; pwdHash = result['passw... 阅读全文
posted @ 2013-12-23 11:26 sexy_girl 阅读(187) 评论(0) 推荐(0) 编辑