ページに div があり、読み込み時に非表示になっています。Jquery を使用して、非表示の div を表示し、開いている div を非表示にします。これは私のコードです:
<script type="text/javascript">
// hides the slickbox as soon as the DOM is ready
$('#details').hide();
// shows the slickbox on clicking the noted link
$('#proceed').click(function () {
$('#details').show('slow');
$('#contColL').hide('slow');
$('#contColR').hide('slow');
$('#intro').hide('slow');
return false;
});
$('#reviewPlate').click(function () {
$('#details').hide('slow');
$('#contColL').show('slow');
$('#contColR').show('slow');
$('#intro').show('slow');
return false;
});
</script>
これは問題なく動作しますが、新しいページを上から表示することはできません。代わりに、名前付きの div - 詳細から表示されます。新しく表示されたページを上から表示するにはどうすればよいですか?