js 学习笔记
文章平均质量分 79
lzyfn
这个作者很懒,什么都没留下…
展开
-
Ember.js 初学指南
简介................................................................................什么是Ember.js.................................................................消除样板文件..................................原创 2013-03-11 10:10:54 · 348 阅读 · 0 评论 -
jQuery 星级插件
CSS: .rating_ui { position: relative; display: inline-block; overflow: hidden; width: 100%; height: 12px; margin-bottom: 10px; background-color: whitesmoke; // border-rad...原创 2014-12-05 19:07:25 · 133 阅读 · 0 评论 -
jquery插件
文件上传类jQuery插件Ajax File Upload.jQUploader.Multiple File Upload plugin.jQuery File Style.Styling an input type file.Progress Bar Plugin.表单验证类jQuery插件jQuery Validation.Auto Help.Sim...原创 2014-11-21 15:54:23 · 226 阅读 · 0 评论 -
js 面向对象理解
var Che = function (name, color) { //创建类的属性 this.name = name; this.color = color; //创建类的方法 this.run = function () { console.log('开着' + this.color + '颜色的' + this....原创 2013-10-16 11:03:50 · 91 阅读 · 0 评论 -
iframe跨域通信的通用解决方案 (摘抄)
来自:http://www.alloyteam.com/2012/08/lightweight-solution-for-an-iframe-cross-domain-communication/DEMO:点击这里脚本下载:http://biqing.alloyteam.com/lab/messenger/messenger.jsGitHub:https://github.com...原创 2014-08-13 13:16:09 · 176 阅读 · 0 评论 -
jquery Ajax 多级联动插件
#### js $('select.ajax-linkage').on('change', function () { var $this = $(this), $next_node = $($this.data('nextnode')), $selectedOpt = $this.find('option:sele...原创 2014-08-13 11:44:34 · 407 阅读 · 0 评论 -
jQuery DataTable 使用
### ‘发克‘## 后台参数说明:* @param {object} oSettings dataTables settings object* @param {object} json json data return from the server.* @param {string} json.sEcho Tracking flag for DataTables to...原创 2014-08-08 17:56:22 · 286 阅读 · 0 评论 -
json 对象 key value 值的提取
字符串转对象(strJSON代表json字符串) var obj = eval(strJSON); var obj = strJSON.parseJSON(); var obj = JSON.parse(strJSON); json对象转字符串(obj代表json对象) var str = obj.toJSONString(); var str = JSON.stringi...原创 2013-09-26 14:06:13 · 383 阅读 · 0 评论 -
jquery 本地图片浏览
jquery 本地图片浏览(支持ie7,8) // 本地图片浏览,此插件依赖 JCrop 切图插件jQuery.fn.extend({ avatarPreview: function (opts) { var _self = this, _this = $(this), _jcrop; opts = jQuery.extend({ ...原创 2014-02-18 16:14:02 · 229 阅读 · 0 评论 -
jquery 图片文件上传 ajaxUploadFile
AjaxFileUpload.js 修改后:(function ($, document) { $.extend({ ajaxUploadFile: function (options) { function getId() { return (new Date).getTime()...原创 2014-07-03 11:40:36 · 114 阅读 · 0 评论 -
jQuery 插件 ajax 按钮
jQuery 插件参数获取 options (function ($, window) { $.fn.ajaxButton = function (options) { var AjaxButton = function (clickedBut, opts) { this.clickedBut = clickedBut;...原创 2014-06-30 18:38:55 · 187 阅读 · 0 评论 -
Angular JS学习笔记
Angular JS API http://docs.angularjs.org/api/加载: 1、<html data-ng-app> 2、window.onload = function () { angular.bootstrap(document, ['FnDirective']); //...原创 2013-08-23 10:51:29 · 121 阅读 · 0 评论 -
js mouseover 改 mouseleave 、鼠标事件
示例引用: http://www.jsfoot.com/jquery/demo/2011-09-06/170.html <script type="text/javascript" src="scripts/jquery-1.2.6.min.js"></script> <script type=...原创 2013-06-28 16:04:54 · 364 阅读 · 0 评论 -
js 动画 animate
$(".btn1").click(function(){ $("#box").animate({height:"300px"});}); $(".run").click(function(){ $("#box").animate({opacity: "0.1", left: "+=400"}, 1200)原创 2013-01-06 10:03:20 · 118 阅读 · 0 评论 -
Js获取当前日期时间及其它操作
var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表1月)myDate.getDate(); //获取当前日(1-31)myD...原创 2013-06-04 12:05:43 · 101 阅读 · 0 评论 -
js call 用法
<script type="text/javascript"> function car() { name='n'; color='c'; doors='d'; } function show() { alert(name +"-"+ color +"-"+ doors ) } ...原创 2013-05-24 14:01:18 · 112 阅读 · 0 评论 -
js 面模板、mvc编程
jQuery Tmpl:http://www.cnblogs.com/coffeedeveloper/archive/2012/07/25/2609204.html backbone 中文api http://www.csser.com/tools/backbone/backbone.js.html Backbone.js——优点:强大的社区,强劲的势头;缺点:抽象较...原创 2013-05-20 17:20:17 · 60 阅读 · 0 评论 -
rails js 数据转换
$('#index-cover').indexCover({data: <%= @cover_data.to_json.html_safe %>});原创 2013-03-18 11:12:09 · 107 阅读 · 0 评论 -
前端JS下载图片压缩包
=> 前端下载图片压缩包加载js文件:https://github.com/Stuk/jszip/tree/master/dist/jszip.js打包img文件为blob对象: var zip = new JSZip()App = { saveFilebyBlob: function (content, fileName) { var ...原创 2016-04-10 15:05:56 · 1195 阅读 · 0 评论