亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? nicejforms.js

?? jquery form用法基于Ajax的表單
?? JS
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/** * @name NiceJForms * @description This a jQuery equivalent for Niceforms ( http://badboy.ro/articles/2007-01-30/niceforms/ ).  All the forms are styled with beautiful images as backgrounds and stuff. Enjoy them! * @param Hash hash A hash of parameters * @option integer selectRightSideWidth width of right side of the select * @option integer selectLeftSideWidth width of left side of the select  * @option integer selectAreaHeight * @option integer selectAreaOPtionsOverlap * @option imagesPath folder where custom form images are stored * @type jQuery * @cat Plugins/Interface/Forms * @author Lucian Lature ( lucian.lature@gmail.com ) * @credits goes to Lucian Slatineanu ( http://www.badboy.ro ) * @version 0.1 */jQuery.NiceJForms = {	options : {		selectRightSideWidth     : 21,		selectLeftSideWidth      : 8,		selectAreaHeight 	     : 21,		selectAreaOptionsOverlap : 2,		imagesPath               : "css/images/default/"		// other options here	},		selectText     : 'please select',	preloads       : new Array(),	inputs         : new Array(),	labels         : new Array(),	textareas      : new Array(),	selects        : new Array(),	radios         : new Array(),	checkboxes     : new Array(),	texts          : new Array(),	buttons        : new Array(),	radioLabels    : new Array(),	checkboxLabels : new Array(),	hasImages      : true,		keyPressed : function(event)	{		var pressedKey = event.charCode || event.keyCode || -1;				switch (pressedKey)		{			case 40: //down			var fieldId = this.parentNode.parentNode.id.replace(/sarea/g, "");			var linkNo = 0;			for(var q = 0; q < selects[fieldId].options.length; q++) {if(selects[fieldId].options[q].selected) {linkNo = q;}}			++linkNo;			if(linkNo >= selects[fieldId].options.length) {linkNo = 0;}			selectMe(selects[fieldId].id, linkNo, fieldId);			break;				case 38: //up			var fieldId = this.parentNode.parentNode.id.replace(/sarea/g, "");			var linkNo = 0;			for(var q = 0; q < selects[fieldId].options.length; q++) {if(selects[fieldId].options[q].selected) {linkNo = q;}}			--linkNo;			if(linkNo < 0) {linkNo = selects[fieldId].options.length - 1;}			selectMe(selects[fieldId].id, linkNo, fieldId);			break;		default:			break;		}	},		build : function(options)	{		if (options)			jQuery.extend(jQuery.NiceJForms.options, options);						if (window.event) {			jQuery('body',document).bind('keyup', jQuery.NiceJForms.keyPressed);		} else {			jQuery(document).bind('keyup', jQuery.NiceJForms.keyPressed);		}				// test if images are disabled or not		var testImg = document.createElement('img');		$(testImg).attr("src", jQuery.NiceJForms.options.imagesPath + "blank.gif").attr("id", "imagineTest");		jQuery('body').append(testImg);				if(testImg.complete)		{			if(testImg.offsetWidth == '1') {jQuery.NiceJForms.hasImages = true;}			else {jQuery.NiceJForms.hasImages = false;}		}		$(testImg).remove();					if(jQuery.NiceJForms.hasImages)		{			$('form.niceform').each( function()				{					el 				= jQuery(this);					jQuery.NiceJForms.preloadImages();					jQuery.NiceJForms.getElements(el);					jQuery.NiceJForms.replaceRadios();					jQuery.NiceJForms.replaceCheckboxes();					jQuery.NiceJForms.replaceSelects();										if (!$.browser.safari) {						jQuery.NiceJForms.replaceTexts();						jQuery.NiceJForms.replaceTextareas();						jQuery.NiceJForms.buttonHovers();					}				}			);		}		},		preloadImages: function()	{		jQuery.NiceJForms.preloads = $.preloadImages(jQuery.NiceJForms.options.imagesPath + "button_left_xon.gif", jQuery.NiceJForms.options.imagesPath + "button_right_xon.gif", 		jQuery.NiceJForms.options.imagesPath + "input_left_xon.gif", jQuery.NiceJForms.options.imagesPath + "input_right_xon.gif",		jQuery.NiceJForms.options.imagesPath + "txtarea_bl_xon.gif", jQuery.NiceJForms.options.imagesPath + "txtarea_br_xon.gif", 		jQuery.NiceJForms.options.imagesPath + "txtarea_cntr_xon.gif", jQuery.NiceJForms.options.imagesPath + "txtarea_l_xon.gif", jQuery.NiceJForms.options.imagesPath + "txtarea_tl_xon.gif", jQuery.NiceJForms.options.imagesPath + "txtarea_tr_xon.gif");	},		getElements: function(elm)	{		el = elm ? jQuery(elm) : jQuery(this);				var r = 0; var c = 0; var t = 0; var rl = 0; var cl = 0; var tl = 0; var b = 0;				jQuery.NiceJForms.inputs = $('input', el);		jQuery.NiceJForms.labels = $('label', el);		jQuery.NiceJForms.textareas = $('textarea', el);		jQuery.NiceJForms.selects = $('select', el);		jQuery.NiceJForms.radios = $('input[@type=radio]', el);		jQuery.NiceJForms.checkboxes = $('input[@type=checkbox]', el);		jQuery.NiceJForms.texts = $('input[@type=text]', el).add($('input[@type=password]', el));				jQuery.NiceJForms.buttons = $('input[@type=submit]', el).add($('input[@type=button]', el));				jQuery.NiceJForms.labels.each(function(i){			labelFor = $(jQuery.NiceJForms.labels[i]).attr("for");			jQuery.NiceJForms.radios.each(function(q){				if(labelFor == $(jQuery.NiceJForms.radios[q]).attr("id"))				{					if(jQuery.NiceJForms.radios[q].checked)					{						$(jQuery.NiceJForms.labels[i]).removeClass().addClass("chosen");						}										jQuery.NiceJForms.radioLabels[rl] = jQuery.NiceJForms.labels[i];					++rl;				}			})						jQuery.NiceJForms.checkboxes.each(function(x){								if(labelFor == $(this).attr("id"))				{					if(this.checked)					{						$(jQuery.NiceJForms.labels[i]).removeClass().addClass("chosen");						}					jQuery.NiceJForms.checkboxLabels[cl] = jQuery.NiceJForms.labels[i];					++cl;				}			})		});	},		replaceRadios: function()	{		var self = this;				jQuery.NiceJForms.radios.each(function(q){					//alert(q);			$(this).removeClass().addClass('outtaHere'); //.hide(); //.className = "outtaHere";												var radioArea = document.createElement('div');			//console.info($(radioArea));			if(this.checked) {$(radioArea).removeClass().addClass("radioAreaChecked");} else {$(radioArea).removeClass().addClass("radioArea");};						radioPos = jQuery.iUtil.getPosition(this);						jQuery(radioArea)				.attr({id: 'myRadio'+q})				.css({left: radioPos.x + 'px', top: radioPos.y + 'px', margin : '1px'})				.bind('click', {who: q}, function(e){self.rechangeRadios(e)})				.insertBefore($(this));						$(jQuery.NiceJForms.radioLabels[q]).bind('click', {who: q}, function(e){self.rechangeRadios(e)});						if (!$.browser.msie) {				$(this).bind('focus', function(){self.focusRadios(q)}).bind('blur', function() {self.blurRadios(q)});			}						$(this).bind('click', function(e){self.radioEvent(e)});		});				return true;	},		changeRadios: function(who) {				var self = this;				if(jQuery.NiceJForms.radios[who].checked) {					jQuery.NiceJForms.radios.each(function(q){				if($(this).attr("name") == $(jQuery.NiceJForms.radios[who]).attr("name"))				{					this.checked = false;					$(jQuery.NiceJForms.radioLabels[q]).removeClass();					}			});			jQuery.NiceJForms.radios[who].checked = true;			$(jQuery.NiceJForms.radioLabels[who]).addClass("chosen");						self.checkRadios(who);		}	},		rechangeRadios:function(e) 	{		who = e.data.who;				if(!jQuery.NiceJForms.radios[who].checked) {			for(var q = 0; q < jQuery.NiceJForms.radios.length; q++) 			{				if(jQuery.NiceJForms.radios[q].name == jQuery.NiceJForms.radios[who].name) 				{					jQuery.NiceJForms.radios[q].checked = false; 					//console.info(q);					jQuery.NiceJForms.radioLabels[q].className = "";				}			}			$(jQuery.NiceJForms.radios[who]).attr('checked', true); 			jQuery.NiceJForms.radioLabels[who].className = "chosen";			jQuery.NiceJForms.checkRadios(who);		}	},		checkRadios: function(who) {		$('div').each(function(q){			if($(this).is(".radioAreaChecked") && $(this).next().attr("name") == $(jQuery.NiceJForms.radios[who]).attr("name")) {$(this).removeClass().addClass("radioArea");}		});		$('#myRadio' + who).toggleClass("radioAreaChecked");	},		focusRadios: function(who) {		$('#myRadio' + who).css({border: '1px dotted #333', margin: '0'}); return false;	},		blurRadios:function(who) {		$('#myRadio' + who).css({border: 'none', margin: '1px'}); return false;	},		radioEvent: function(e) {		var self = this;		if (!e) var e = window.event;		if(e.type == "click") {for (var q = 0; q < jQuery.NiceJForms.radios.length; q++) {if(this == jQuery.NiceJForms.radios[q]) {self.changeRadios(q); break;}}}	},	replaceCheckboxes: function () 	{		var self = this;				jQuery.NiceJForms.checkboxes.each(function(q){			//move the checkboxes out of the way			$(jQuery.NiceJForms.checkboxes[q]).removeClass().addClass('outtaHere');			//create div			var checkboxArea = document.createElement('div');						//console.info($(radioArea));			if(jQuery.NiceJForms.checkboxes[q].checked) {$(checkboxArea).removeClass().addClass("checkboxAreaChecked");} else {$(checkboxArea).removeClass().addClass("checkboxArea");};						checkboxPos = jQuery.iUtil.getPosition(jQuery.NiceJForms.checkboxes[q]);						jQuery(checkboxArea)				.attr({id: 'myCheckbox' + q})				.css({				left: checkboxPos.x + 'px', 				top: checkboxPos.y + 'px',				margin : '1px'			})			.bind('click', {who: q}, function(e){self.rechangeCheckboxes(e)})			.insertBefore($(jQuery.NiceJForms.checkboxes[q]));						if(!$.browser.safari)			{				$(jQuery.NiceJForms.checkboxLabels[q]).bind('click', {who:q}, function(e){self.changeCheckboxes(e)})			}			else {				$(jQuery.NiceJForms.checkboxLabels[q]).bind('click', {who:q}, function(e){self.rechangeCheckboxes(e)})			}						if(!$.browser.msie)			{				$(jQuery.NiceJForms.checkboxes[q]).bind('focus', {who:q}, function(e){self.focusCheckboxes(e)});				$(jQuery.NiceJForms.checkboxes[q]).bind('blur', {who:q}, function(e){self.blurCheckboxes(e)});			}							//$(jQuery.NiceJForms.checkboxes[q]).keydown(checkEvent);		});		return true;	},	rechangeCheckboxes: function(e)	{		who = e.data.who;		var tester = false;

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日精品一区二区| 蜜桃久久久久久| 一区二区中文视频| 国产日韩欧美综合在线| 久久免费看少妇高潮| 2欧美一区二区三区在线观看视频| 日韩欧美亚洲另类制服综合在线 | 91国产丝袜在线播放| 99精品黄色片免费大全| 成人国产精品免费网站| 不卡一区在线观看| 色婷婷精品大在线视频| 欧美亚男人的天堂| 欧美一级欧美三级| 精品国产一区二区在线观看| 国产三级三级三级精品8ⅰ区| 国产欧美一区二区精品婷婷 | 麻豆国产91在线播放| 久久99国产精品尤物| 国产精品一级二级三级| 国产成人在线电影| 91麻豆国产精品久久| www.日本不卡| 在线亚洲一区观看| 91麻豆精品国产自产在线| 精品裸体舞一区二区三区| 日本一区二区动态图| 亚洲卡通动漫在线| 天天av天天翘天天综合网色鬼国产| 日本中文字幕一区二区视频| 国产一二三精品| 国产精一品亚洲二区在线视频| 日韩av在线免费观看不卡| 另类小说一区二区三区| 风流少妇一区二区| 色天天综合久久久久综合片| 8v天堂国产在线一区二区| 久久久久久久久久久久久女国产乱 | 久久99精品久久久久婷婷| 懂色av中文一区二区三区 | 国产精品无遮挡| 艳妇臀荡乳欲伦亚洲一区| 免费在线看成人av| 国产91综合网| 欧美日韩mp4| 国产网红主播福利一区二区| 亚洲综合清纯丝袜自拍| 国内一区二区视频| 91国产视频在线观看| 亚洲色图制服丝袜| 久久激情五月激情| 日韩视频免费直播| 国产亚洲欧美激情| 亚洲成人精品影院| 国产丶欧美丶日本不卡视频| 在线观看三级视频欧美| 欧美精品一区二区三区蜜臀| 亚洲免费看黄网站| 国产精品影视天天线| 欧美视频第二页| 中文字幕av在线一区二区三区| 丝袜诱惑制服诱惑色一区在线观看| 国产成人av在线影院| 欧美日韩专区在线| 中文字幕视频一区| 久久99精品久久久久久| 欧美三级视频在线观看| 中文字幕精品在线不卡| 免费成人在线影院| 欧美亚洲国产一区在线观看网站 | 国产日韩欧美激情| 日本成人中文字幕| 色婷婷精品久久二区二区蜜臀av | 91丝袜呻吟高潮美腿白嫩在线观看| 91丨九色丨蝌蚪丨老版| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲自拍与偷拍| 99久久精品免费精品国产| 亚洲国产成人91porn| 99re66热这里只有精品3直播| 精品美女在线播放| 日产欧产美韩系列久久99| 欧美在线免费视屏| √…a在线天堂一区| 国产99一区视频免费| 精品乱人伦一区二区三区| 日韩国产在线观看一区| 欧美性欧美巨大黑白大战| 亚洲人成网站影音先锋播放| 福利一区在线观看| 国产色91在线| 国产一区二区按摩在线观看| 精品久久人人做人人爽| 青娱乐精品在线视频| 欧美欧美欧美欧美首页| 亚洲国产综合视频在线观看| 91免费观看在线| 亚洲人成在线观看一区二区| 99久久综合狠狠综合久久| 中文成人综合网| 成人av免费网站| 国产精品美女一区二区三区| 成人性色生活片免费看爆迷你毛片| 久久这里只有精品6| 国产精品一二二区| 中文在线免费一区三区高中清不卡| 国产福利一区二区三区在线视频| 26uuu久久天堂性欧美| 国产麻豆精品视频| 国产日韩欧美高清在线| 成人网在线播放| 中文字幕一区av| 国产在线播放一区| 狠狠久久亚洲欧美| 日韩精品中午字幕| 久久99精品久久久久久久久久久久 | 一区二区三区色| 欧美三日本三级三级在线播放| 亚洲成a人片在线不卡一二三区 | 亚洲国产色一区| 欧美日韩一级片网站| 天天综合日日夜夜精品| 日韩免费高清电影| 国产精品123| 综合久久久久综合| 欧美日韩国产首页| 精品一区二区三区影院在线午夜| 2020国产成人综合网| 成人免费高清视频| 亚洲综合无码一区二区| 欧美一级在线视频| 国产成人av电影在线| 亚洲人成网站影音先锋播放| 欧美精品一卡两卡| 国产精品夜夜爽| 一区二区三区四区在线播放 | 久久精品欧美一区二区三区麻豆| 成人性视频网站| 亚洲福中文字幕伊人影院| 欧美电视剧在线看免费| 成人av动漫网站| 视频一区欧美精品| 国产日韩亚洲欧美综合| 欧美羞羞免费网站| 国产尤物一区二区| 一区二区三区精品视频在线| 日韩欧美成人一区二区| av成人动漫在线观看| 视频一区二区中文字幕| 中文字幕不卡在线| 欧美精品高清视频| 成人免费av在线| 五月天网站亚洲| 国产精品美女久久久久久| 538prom精品视频线放| 成人av资源站| 日韩电影在线一区二区三区| 国产精品无遮挡| 欧美一区二区美女| 色综合久久中文字幕综合网| 久久国产剧场电影| 一区二区三区精密机械公司| 久久九九99视频| 欧美精品日韩精品| 99久久伊人网影院| 久久9热精品视频| 亚洲一区在线免费观看| 国产欧美va欧美不卡在线 | 亚洲精品高清在线| 久久精品一区二区三区不卡牛牛| 欧美三级日韩三级| av男人天堂一区| 精品一区二区日韩| 日韩黄色小视频| 亚洲色图在线视频| 国产欧美1区2区3区| 日韩美女在线视频| 欧美精品高清视频| 91福利视频在线| 成人午夜av影视| 国产精品综合在线视频| 麻豆成人在线观看| 三级不卡在线观看| 亚洲一线二线三线视频| 国产精品久久久久久妇女6080| 欧美电影免费观看高清完整版在 | 国产呦萝稀缺另类资源| 日韩和欧美的一区| 亚洲图片一区二区| 最新国产精品久久精品| 久久久99久久精品欧美| 国产一区二区在线电影| 亚洲一二三四久久| 欧美国产精品v| 日韩午夜电影在线观看| 欧美午夜精品一区| 欧洲在线/亚洲| 99视频精品全部免费在线| 成人国产精品免费网站| 成人晚上爱看视频|