1

私はJSが初めてなので、ご容赦ください。文字列パラメーターを jQuery id セレクターに渡そうとしていますが、どういうわけか機能しません..

HTML:

<li id="startPageButton" class="buttons" onclick="showContent(startPageContent, 394)">Startpage</li>

JS:

function showContent(cont, boxHeight) {
$(".content").fadeOut(5, function(){
    $("#contentBox").animate({height: boxHeight + "px" }, 400, function(){
        $("#" + cont).fadeIn(100);
    });
});

}

「$("#" + cont)」の部分に何か問題があります..それを単純なIDセレクターに置き換えると、機能します:(

4

1 に答える 1