あなたはこのようなことをすることができます:
// Hide lis
$(".training_screen").hide();
$(".welcome_screen").hide();
// Show/Hide forms based on radio button selection
$('input[name="screen_type"]').bind('change',function(){
var fnTraining, fnWelcome;
if ($(this).val() == 1) {
fnTraining = "slideDown";
fnWelcome = "slideUp";
} else {
fnTraining = "slideUp";
fnWelcome = "slideDown";
}
$('.welcome_screen')[fnWelcome]();
$('.training_screen')[fnTraining]();
});
作業デモ: http: //jsfiddle.net/jfriend00/4aSbG/
または、show /hideパラメーターを受け取るslideToggleOptionjQueryメソッドを作成し、次のように使用することもできます。
// Hide lis
$(".training_screen").hide();
$(".welcome_screen").hide();
jQuery.fn.slideToggleOption = function(show /* other optional args from slideToggle */) {
var args = Array.prototype.slice.call(arguments, 1);
if (show) {
return(this.slideDown.apply(this, args));
} else {
return(this.slideUp.apply(this, args));
}
};
// Show/Hide forms based on radio button selection
$('input[name="screen_type"]').bind('change',function(){
var showWelcome = ($(this).val() == 1);
$('.welcome_screen').slideToggleOption(showWelcome);
$('.training_screen').slideToggleOption(!showWelcome);
});
作業デモ: http: //jsfiddle.net/jfriend00/Lqeqe/