我正在尝试使用jquery从select中删除选项,
在我的情况下,我有超过4个选择项目(在某些情况下10选择) 我必须实现的方案是:
如果用户从第一个选择中选择丰田选项,那么丰田将从其他三个选择中删除
然后,如果他从第二个选择中选择日产,那么日产也将从其他三个中删除甚至第一个 直到最后一个选择只显示一个选项我试过下面的例子它不起作用 http://jsfiddle.net/rooseve/PGqv7/3/ 请帮助我初学jquery
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document sans titre</title>
<script type="text/javascript">
$( function(){
var sel1 = $('#first'), sel2 = $('#second');
//get the options value/text of some selection
/**
* get the options value/text map of some select element
*
* @param sel
* a select element
*
*
* @return {val1:txt1, val2:txt2....}
*/
function getSelOptions(sel) {
var opts = {}, tmp;
for ( var i = 0, len = sel.options.length; i < len; i++) {
tmp = sel.options[i];
opts[tmp.value] = tmp.text;
}
return opts;
}
/**
* Reset the select element's options
*
* @param sel
* the select element
* @param newOptions
* the new options map
* @param except
* the option value which will be excluded
*/
function setOptionsExcept(sel, newOptions, except) {
//remember the current select value
var curSel = sel.options[sel.selectedIndex].value;
//clear the select options
sel.options.length = 0;
for ( var k in newOptions) {
//this one should be excludeed
if (k != "none" && k == except)
continue;
//add to the option list
sel.options.add(new Option(newOptions[k], k, false, k == curSel));
}
}
//remember the options map
var opts1 = getSelOptions(sel1.get(0)), opts2 = getSelOptions(sel2.get(0));
sel1.change(function() {
//sel1 value
var val = $(this).val();
if (val == "none") {
//as sel1 is none, reset sel1
setOptionsExcept(this, opts1);
}
//reset sel2, but no sel1 value
setOptionsExcept(sel2.get(0), opts2, val);
});
sel2.change(function() {
//sel2 value
var val = $(this).val();
if (val == "none") {
//as sels is none, reset sel2
setOptionsExcept(this, opts2);
}
//reset sel1, but no sel2 value
setOptionsExcept(sel1.get(0), opts1, val);
});
}
</script>
</head>
<body>
<table>
<tr>
<td><select id="first" required>
<option value="">choisir</option>
<option value="Profconf">Professeur de Conférence</option>
<option value="ProfEnsgSup">Professeur d'enseignement supérieur</option>
<option value="ProfAssistant">Professeur Assistant</option>
<option value="ProfAdjoint">Professeur Adjoint</option>
</select>
<input type="hidden" name="designationtypecadre1" value="Professeur_checheurEquivalent "/>
</td>
</tr>
<tr>
<td><select id="second" >
<option value="">choisir</option>
<option value="Profconf">Professeur de Conférence</option>
<option value="ProfEnsgSup">Professeur d'enseignement supérieur</option>
<option value="ProfAssistant">Professeur Assistant</option>
<option value="ProfAdjoint">Professeur Adjoint</option>
</select>
<input type="hidden" name="designationtypecadre2" value="Professeur_checheurEquivalent"/>
</td>
</tr>
<tr>
<td><select id="third" >
<option value="">choisir</option>
<option value="Profconf">Professeur de Conférence</option>
<option value="ProfEnsgSup">Professeur d'enseignement supérieur</option>
<option value="ProfAssistant">Professeur Assistant</option>
<option value="ProfAdjoint">Professeur Adjoint</option>
</select>
<input type="hidden" name="designationtypecadre3" value="Professeur_checheurEquivalent"/>
</td>
</tr>
</table> </body>
</html>
答案 0 :(得分:0)
如果用户从第一个选择丰田选择丰田 将从其他三个选择中删除
试试这个,demo
$( '#first, #second, #third, #fourth' ).change(function(){
//get the selected text
var selectedText = $(this).find(":selected").html();
$( '#first, #second, #third, #fourth' ).not($(this)).each( function(){
$(this).find("option").each( function(){
if ( $(this).html() == selectedText )
{
$(this).remove();
}
});
} );
});
答案 1 :(得分:0)
以下内容将使用&#39; choisir&#39;选项以及未在其他选项中选择的所有选项。由于基数是所有启动选项,因此在另一个文本框中选择其他选项将重新使用原始选项
var selects = $('select'), // or $('#first, #second, #third'), but better would be to use a class
alloptions = $('#first').children().clone();
selects.change(function(){
var values= selects.map((i,s) => $(s).val()).get();
selects.not(this).each((si,s)=>{
var cur = $(s).val();
$(s).empty()
.append(alloptions
.filter((oi, o)=> oi === 0 || o.value === cur || values.indexOf(o.value) === -1).clone())
.val(cur);
});
});
在更改事件中,使用var values= selects.map((i,s) => $(s).val()).get();
获取包含所有值的数组。然后,除了触发更改事件的每个Select
之外,所有选项都会向过滤器{{1}确认},其中oi是选项索引,o.value选项值。换句话说:始终包含索引0(choisir),select的当前值和不在缓冲的oi === 0 || o.value === cur || values.indexOf(o.value) === -1
数组中的所有值
PS,如果可以在运行时填充选择,则只需填充第一个选择,其他选择可以填充相同的选项,如此fiddle
中所做的那样