
jquery
sunny_sailor
JUSTDOIT
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jquery中event object
Event Object jQuery’s event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler. Most properties from the ori原创 2012-02-22 14:10:43 · 1054 阅读 · 0 评论 -
jQuery技巧
语法总结和注意事项 1、关于页面元素的引用 通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。 2、jQuery对象与dom对象的转换 只有jquery对象才能使用jquery定义的方法。注意dom对象和jquery对象是有区别的,调用转载 2012-02-21 16:12:31 · 373 阅读 · 0 评论 -
jquery实现tab标签选项卡自动切换效果
XML/HTML代码 > html xmlns="http://www.w3.org/1999/xhtml"> head> meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> title>jQuery实现的tab标签自动切换效果title> style type="text/css"> * {m转载 2012-03-02 11:23:09 · 2356 阅读 · 0 评论 -
jquery 图片浏览 放大镜
首先当然是要有jQuery库,右键另存为(jquery-1.6.1.js) 然后下载放大镜插件:右键另存为(jquery.imageLens.js) script type="text/javascript" src="jquery-1.6.1.js">script> script type="text/javascript" src="jquery.ima原创 2012-03-29 16:09:30 · 571 阅读 · 0 评论 -
jquery uploadify 上传文件
网上找了一天,大家都说Uploadify唯一的缺点就是不支持中文按钮,杯具之前,我看了下Uploadify的API,才发现了几个参数没被大家提及的,这正是解决此问题的关键。(以后坚决养成没事就看API的习惯) Uploadify有一个参数是 buttonText 这个无论你怎么改都不支持中文,因为插件在js里用了一个转码方法把这个参数的值转过码了,解码的地方在那个swf文件里,看不到代原创 2012-09-24 10:09:30 · 884 阅读 · 0 评论