jquery
hua00shao
这个作者很懒,什么都没留下…
展开
-
Jquery插件Validform使用说明
你没看错,就一行代码搞定整站的表单验证!$(".demoform").Validform(); 使用方法:$(".demoform").Validform({//所有可传入的参数如下:; btnSubmit:"#btn_sub", btnReset:".btn_reset", tiptype:1, ignoreHidden:false,转载 2013-08-07 11:45:03 · 3286 阅读 · 0 评论 -
jquery【插件】 pagination使用
作者:zccst 1,下载3个文件 分别为:jquery-1.7.1.js、jquery.pagination.js、pagination.css //详见附件 2,准备好服务器端返回结果 主要代码如下: Php代码 $members = array(array().......); //详见附件 $total转载 2013-12-18 21:49:13 · 634 阅读 · 0 评论 -
jquery获得select option的值 和对select option的操作
jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text转载 2014-01-27 14:19:21 · 421 阅读 · 0 评论 -
jQuery学习之prop和attr的区别
.prop()1、.prop( propertyName )获取匹配集合中第一个元素的Property的值2、.prop( propertyName, value ).prop( map ).prop( propertyName, function(index, oldPropertyValue) )给匹配元素集合设定一个或多个属转载 2014-04-26 21:41:24 · 288 阅读 · 0 评论 -
(转)jquery操作select(增加,删除,清空)
jQuery获取Select选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的 3. var checkValu转载 2014-04-29 00:41:50 · 414 阅读 · 0 评论