にdownlist表示したい、私は(言語はドロップダウンリスト)私は、言語を選択し、同じポップアップウィンドウ .Afterにリスト(国のリスト)をセカンドドロップダウン表示するセカンドドロップは、同じポップアップウィンドウ
国のドロップダウンリストには、最初のドロップダウン(言語ドロップダウン)で選択した言語に関連する国の詳細が表示されますが、その表示はバックワードで、同じポップアップで国(Dorpダウンリスト)を表示したい言語の選択に使用されます。
注:言語のドロップダウンが 値を選択した後に消え、そして国のドロップダウン同じポップアップで表示する必要があるの
のjQuery
$(document).ready(function() {
var id = '#dialog';
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set heigth and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
//transition effect
$('#mask').fadeIn(500);
$('#mask').fadeTo("slow",0.9);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);
//transition effect
$(id).fadeIn(2000);
//if close button is clicked
$('.window .close').click(function (e) {
//Cancel the link behavior
e.preventDefault();
$('#mask').hide();
$('.window').hide();
});
//if mask is clicked
$('#mask').click(function() {
var val = $(".cs-select option:selected").text();
if(val == 'Choose Language'){
return;
}
$(this).hide();
$('.window').hide();
});
$(document).click(function() {
if (!$(".cs-select ").is(":focus")) {
$('#dialog').css({'height':23});
}else{
var height = 17;
$('.cs-select option').each(function (item) {
height = height +17;
})
if($('#dialog').height() < 25){
$('#dialog').css({'height':height});
}else{
$('#dialog').css({'height':23});
}
}
});
});
/*select your country*/
$(document).ready(function() {
$('#Rank').bind('change', function() {
var elements = $('div.container').children().hide(); // hide all the elements
var value = $(this).val();
if (value.length) { // if somethings' selected
elements.filter('.' + value).show(); // show the ones we want
}
}).trigger('change');
});
ありがとうございました。@nashcheez –
おめでとうございます。 – nashcheez