嗨,新朋友,很高兴认识你,欢迎来到我的博客。
文章标签: jquery

JQuery.Ajax之错误调试帮助信息

下面是Jquery中AJAX参数详细列表: 参数名 类型 描述 url String (默认: 当前页地址) 发送请求的地址。 type String (默认: "GET") 请求方式 ("POST" 或 "GET"), 默认为 "GET"。注意:其它 HTTP 请求方法,如 PUT 和 DELETE ...

jquery用div模拟select(select美化)

css代码: .mod_select { position:absolute; left:30%; top:100px; font-familY:Arial, Helvetica, sans-serif; } .mod_select ul { margin:0; padding:0; } .mod_select ul li { list-style-type:none; float:l...

ajax(jquery) 刷新,事件失效,重新绑定

解决方法: 1.重新绑定。 2、把比如 $("...").click(function(){...}) 的写法改成$("...").live('click', function(){...})

Yii-禁止加载jquery

在widget的registerClientScript函数中 $cs=Yii::app()->getClientScript(); $cs->scriptMap=array( 'jquery.js'=>false, );

jquery 表单操作

根据name取 <input type="radio" value="0" name="city"> $("input[name=city]").bind('click', function(){ }); 其他取法 orderlist为input上层的id 取得checkbox选取的数量$("#orderlist input[type='checkbox']:checked")...

点击链接同时更改两个iframe-基于jQuery

function gotourl(url_a, url_b) { $('#ifr_a').get(0).src = url_a; $('#ifr_b').get(0).src = url_b; } html调用 <a onclick="gotourl('http://g.cn/','http://baidu.com');" href="javascript:void(0)">点我下面...

jQuery 如何存储,获取和删除 Cookies

jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { options = options || {}; if (value === null) { value = ''; options = $.extend({}, options); options.expires = -...

jquery call方法和apply方法

call方法: 语法:call([thisObj[,arg1[, arg2[, [,.argN]]]]]) 定义:调用一个对象的一个方法,以另一个对象替换当前对象。 说明: call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文...

jQuery.extend 函数详解

JQuery的extend扩展方法: Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 一、Jquery的扩展方法原型是: extend(dest,src1,src2,src3...); 它的含义是将src1,src...

How-To Style Thickbox Inline Content Correctly

ThickBox is a great library extension for jQuery. I use it often for showing messages and other dialogs on a page. There are 2 things to keep in mind when you want to show inline content (that’s content on the sam...

10 Jquery Ajax File Uploader Plugins

Creating ajax upload from a raw javascript or jquery is not that simple, when baking a simple website, I personally will use available plugin, so it can save me much time and effort, we have to thank that there a lo...

超强1000个jquery极品插件(三)(图片文字展示类 )

(1)imgAreaSelect imgAreaSelect这个jQuery插件能够选取一张图片中一个矩形区域。 imgAreaSelect (2)Easy Slide EasySlide 是以jQuery为基础开发的一个图库展示插件,EasySlide可以将任何一个网页容器(Container)内的图形自动将其...