随笔分类 -  javaScript

这个学期把javaScript搞下来...加油了!!!
摘要:bootstrap table 简单例子 阅读全文
posted @ 2017-03-03 14:45 KeenLeung 阅读(7430) 评论(0) 推荐(1) 编辑
摘要:JQuery : 插件定义 阅读全文
posted @ 2017-02-27 09:39 KeenLeung 阅读(347) 评论(0) 推荐(0) 编辑
摘要:Javascript : require.js 的使用 阅读全文
posted @ 2017-02-10 15:44 KeenLeung 阅读(400) 评论(0) 推荐(0) 编辑
摘要:Javascript模块化编程(三) 阅读全文
posted @ 2017-02-10 15:29 KeenLeung 阅读(287) 评论(0) 推荐(0) 编辑
摘要:Javascript模块化编程(二) 阅读全文
posted @ 2017-02-10 15:15 KeenLeung 阅读(219) 评论(0) 推荐(0) 编辑
摘要:javascript模块化编程(一) 阅读全文
posted @ 2017-02-10 15:11 KeenLeung 阅读(232) 评论(0) 推荐(0) 编辑
摘要:js : json 和 cookie 的简单操作 阅读全文
posted @ 2017-01-05 21:01 KeenLeung 阅读(721) 评论(0) 推荐(0) 编辑
摘要:今天做东西用到,在网上查到了这样的一种方法,学习学习:来源:http://bbs.csdn.net/topics/310229114Page1: 无标题页 Page2: 无标题页 PS:使用window.opener可以访问js的变量 :win... 阅读全文
posted @ 2014-07-16 14:58 KeenLeung 阅读(435) 评论(0) 推荐(0) 编辑
摘要:为了让函数只在页面加载完毕后才得到执行,我们会把函数绑定到onload事件上:window.onload = userFunction但如果有两个函数:firstFunction() 和 secondFunction(),都想让它们在页面加载完毕后得到执行,该怎么办?如果这样: window.onload = firstFunciton; window.onload = secondFunction;只有最后一个函数能被执行。由此可得:每个事件处理函数只能绑定一条指令。但我们可以这样做: window.onload = function(){ firstFunction(); ... 阅读全文
posted @ 2014-02-26 09:57 KeenLeung 阅读(1397) 评论(0) 推荐(0) 编辑
摘要:来源:http://www.zhangxinxu.com/wordpress/2012/05/getcomputedstyle-js-getpropertyvalue-currentstyle/一、碎碎念~前言我们都用过jQuery的CSS()方法,其底层运作就应用了getComputedStyle以及getPropertyValue方法。对于那些只想混口饭吃的人来讲,晓得CSS()如何使用就足够了。对于希望在JS道路上越走越远的来人说,简单了解一些JS库底层实现对自己的学习很有帮助。可能谈不上信手拈来的使用,至少对创造一些创意新颖的新技术拓宽了思路。jQuery为何受欢迎,其中原因之一就是方 阅读全文
posted @ 2013-04-12 12:48 KeenLeung 阅读(690) 评论(0) 推荐(0) 编辑
摘要:来源:http://www.jb51.net/article/30109.htm<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type& 阅读全文
posted @ 2013-04-12 00:37 KeenLeung 阅读(692) 评论(0) 推荐(0) 编辑
摘要:来源:http://www.jb51.net/article/30108.htm<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="t 阅读全文
posted @ 2013-04-12 00:36 KeenLeung 阅读(330) 评论(0) 推荐(0) 编辑
摘要:来源:http://www.jb51.net/article/30107.htm<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="t 阅读全文
posted @ 2013-04-12 00:33 KeenLeung 阅读(170) 评论(0) 推荐(0) 编辑
摘要:实现一个动态选项框<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" / 阅读全文
posted @ 2013-04-01 13:06 KeenLeung 阅读(316) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:04 KeenLeung 阅读(179) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:03 KeenLeung 阅读(233) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:03 KeenLeung 阅读(166) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:02 KeenLeung 阅读(223) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:01 KeenLeung 阅读(241) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> < 阅读全文
posted @ 2013-04-01 13:00 KeenLeung 阅读(199) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示