Single selection simulation based on jQuery JavaScript Library v1.3.2
(This file is modified based on zhangjingwei’s Jquery Select (radio selection) simulation plug-in V1.3.4)
a. The main reason for the modification is that the original Zhangjingwei's simulation has a problem with the display method. There will be misalignment when appearing alternately with text. Now change the display of the simulated DIV to inline mode. More naturally embedded into lines of text.
b. Automatically convert the select style named 'commonselect' after loading the file. Simplify the call
c. Response to the onchange() event of select. And small adjustments to width acquisition
jquery.select.js
/*
* jQuery.select.js
*/
jQuery.fn.sSelect = function(){
var selectId = $(this).attr('id');
var selectZindex = $(this).css('z-index');
var selectIndex = $('#'+selectId+' > select > option').index($('#'+selectId+' > select > option:selected')[0]);
$('#'+selectId).append('
$('#' selectId ' > div > h4').empty().append($('#' selectId ' > select > option:selected').text() );
$('.dropselectbox').css("display", 'block');
//Get the width priority of select. The width in select style - select automatic width - default is 60
var selectcssWidth = $('#' selectId '> select').css('width');
selectcssWidth = typeof(selectcssWidth) =='undefined' ? 0 : parseInt(selectcssWidth.replace ('px','')) 5 ;
var selectWidth = selectcssWidth ? selectcssWidth : ( $('#' selectId '> select').width() > 0 ? $('#' selectId '> ; select').width() 5 : 60);
$('#' selectId).css("margin-right",selectWidth); //Modify offset
$('#' selectId ' > div > h4').css("width", selectWidth); //Assign the width of the original select to the generated select (not the total width of h4)
$('#' selectId ' > ; div > ul').css("width",selectWidth); //Assign the total width of h4 to Ul
$('#' selectId ' > select').hide();
$('#' selectId ' > div').hover(function(){
$('#' selectId ' > div > h4').addClass("over");
$( '#' selectId ' > ("over");
$('#' selectId ' > div > span').removeClass("over");
});
$('#' selectId)
.bind("focus",function(){
__clearSelectMenu();
$('#' selectId ' > div > h4').addClass("over");
$( '#' selectId ' > div > span').addClass("over");
})
.bind("click",function(e){
//$('# value2').append('Click: ' selectIndex '
');
if($('#' selectId ' > div > ul').css("display") == 'block '){
__clearSelectMenu(selectId);
return false; $('#' selectId ' > div > h4').addClass ("current"); 🎜> $('#' selectId ' > div > ul').show(); .msie || $.browser.opera){ ('overclass') ;
__setSelectValue(selectId); '#' selectId ' > if (windowspace 0) {
$('#' selectId ' > div > ul').css({top:-ulspace});
}else{
$('#' selectId ' > div > ul').css({top:$('#' selectId ' > div > h4').outerHeight(true)});
}
selectIndex = $('#' selectId ' > div > ul > li').index($('.selectedli')[0]);
$(window).scroll(function(){
var windowspace = ($(window).scrollTop() document.documentElement.clientHeight) - $('#' selectId).offset().top;
var ulspace = $('#' selectId ' > div > ul').outerHeight(true);
if (windowspace $('#' selectId ' > div > ul').css({top:-ulspace});
}else{
$('#' selectId ' > div > ul').css({top:$('#' selectId ' > div > h4').outerHeight(true)});
}
});
//响应鼠标点击选择
$('#' selectId ' > div > ul > li').click(function(e){
selectIndex = $('#' selectId ' > div > ul > li').index(this);
//$('#value2').append('鼠标点击:' selectIndex '
');
$('#' selectId '> select')[0].selectedIndex = selectIndex;
$('#' selectId ' > div > h4').empty().append($('#' selectId ' > select > option:selected').text());
__clearSelectMenu(selectId,selectZindex);
e.stopPropagation();
e.cancelbubble = true;
//SELECT onchange 事件
$('#' selectId '> select').change();
})
.hover(
function(){
$('#' selectId ' > div > ul > li').removeClass("over");
$(this).addClass("over").addClass("selectedli");
selectIndex = $('#' selectId ' > div > ul > li').index(this);
},
function(){
$(this).removeClass("over");
}
);
//End
};
e.stopPropagation();
})
.bind("mousewheel",function(){
//以后也许支持滚轮
/*$('#' selectId ' > div > ul > li').hover(
function(){
return false;
},
function(){
return false;
}
);*/
})
.bind("dblclick", function(){
__clearSelectMenu();
return false;
})
.bind("keydown",function(e){
//var hotkeys = e.keyCode;
$(this).bind('keydown',function(e){
if (e.keyCode == 40 || e.keyCode == 38 || e.keyCode == 35 || e.keyCode == 36){
return false;
}
});
switch(e.keyCode){ //Set to true to give a case range
case 13:
enter
//$('#value2').append('The value received by pressing Enter: ' selectIndex ' > case 27:
$('#' selectId ' > div > ul > li').removeClass ("over");
selectIndex = 0; 🎜> $('#' selectId ' > div > ul > li').removeClass("over");
selectIndex = ($('#' selectId ' > select > option').length - 1);
selectIndex = ($('# ' selectId ' > select > option').length - 1);
__keyDown(selectId,selectIndex);
case 36:
$('#' selectId ' > div > ul > li').removeClass("over");
selectIndex = 0; > case 38:
// up
//$('#value2').append('Original value: ' selectIndex ' ).removeClass("over");
else{
selectIndex--;
};
//$('#value2').append('向上改变的aa值:' selectIndex ' ');
__keyDown(selectId,selectIndex);
break;
case 40:
//down
//$('#value2').append('传递过来的:' selectIndex ' ');
$('#' selectId ' > div > ul > li').removeClass("over");
if (selectIndex == ($('#' selectId ' > select > option').length - 1)){
selectIndex = $('#' selectId ' > select > option').length - 1;
}else{
selectIndex ;
};
//$('#value2').append('向下改变的aa值:' selectIndex ' ');
__keyDown(selectId,selectIndex);
break;
/*case ((hotkeys > 47 && hotkeys 64 && hotkeys 96 && hotkeys //首字幕查询预留接口
//character = String.fromCharCode(hotkeys).toLowerCase();
return false;
break;*/
default:
return false;
break;
};
})
.bind("blur",function(){
__clearSelectMenu(selectId,selectZindex);
return false;
});
//禁止选择
$('.dropselectbox').bind("selectstart",function(){
return false;
});
};
function __clearSelectMenu(selectId,selectZindex){
//$('#value2').append('移除焦点:' selectIndex '
');
$('.dropselectbox > ul').empty().hide();
$('.dropselectbox > h4').removeClass("over").removeClass("current");
$('.dropselectbox > span').removeClass("over");
$('#' selectId).removeClass('overclass');
}
function __setSelectValue(sID){
$('#' sID ' > div > ul').empty();
$.each($('#' sID ' > select > option'), function(i){
$('#' sID ' > div > ul').append("
});
$('#' sID ' > div > h4').empty().append($('#' sID ' > select option:selected').text());
$('#' sID ' > div > ul > li').eq($('#' sID '> select')[0].selectedIndex).addClass("over").addClass("selectedli");
}
function __keyDown(sID,selectIndex){
$('#' sID '> select')[0].selectedIndex = selectIndex;
$('#' sID ' > div > ul > li:eq(' selectIndex ')').toggleClass("over");
$('#' sID ' > div > h4').empty().append($('#' sID ' > select option:selected').text());
//SELECT onchange 事件
$('#' sID '> select').change();
}
/* 自动调用 */
$(document).ready(function(){
var s = new Array();
var t = document.getElementsByTagName('select');
var j = 0;
for(var i=0;i
s[j] = t[i];
j ;
}
}
if(j==0)return;
var k = m = null;
for(var i=0;i
m = createDiv(k, i);
//s[i].replaceNode(m);
k.replaceChild(m,s[i])
m.appendChild(s[i]);
$('#selectbox' i).sSelect();
}
function createDiv(p, i){
var div = document.createElement('div');
div.className = 'dropdown';
div.id = 'selectbox' i;
div.innerHTML = ' ';
p.appendChild(div);
return div;
}
})
HTML应用
Jquery Select (single selection) simulation plug-in V1.3.4
> ;
You can refer to this document
http://www.jb51.net/jiaoben/21397.html

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
