
Javascript
文章平均质量分 51
李小西033
这个作者很懒,什么都没留下…
展开
-
jQuery的scroll()事件
今天解决了这样一个问题,在用表格展示数据时,当数据列过多时,表格控件出现滚动条的同时,窗口也出现滚动条 像这样的效果原创 2014-04-17 17:54:27 · 4063 阅读 · 0 评论 -
jQuery:this与$(this)的差別
<script type=“text/javascript”> $(document).ready(function(){ $(“div”).each(function(){ alert($(this).html() + “—-” + this.tagName + “–” + $(this)[0].id); alert((this == $(t转载 2016-05-12 14:29:49 · 468 阅读 · 0 评论 -
将函数作为参数传递(Javascript/Ruby/Golang)
本文展示了在Javascript和Ruby中方法是如何作为参数被传递的。Javascriptfunction sayHello(name) { console.log("Hello, I am " + name); }function execute(someFunction, value) { someFunction(value); } execute(sayHello, "Lisa")原创 2017-10-07 22:55:47 · 2011 阅读 · 1 评论