全て。リンクをクリックするとdivを水平にスライドさせるjQueryがあります。問題は、ページの読み込み時にリンクがクリックされないため、div が表示されない (ul のみが表示される) ことです。ページの読み込み時にID「page1」を選択してdivを作成したいと思います。どうやってするか?私はhtml、idのpage1からpage9までのいくつかのdiv、およびdiv idを参照するリンクを含むulを投稿していません。
jQuery:
jQuery(function($) {
$('a.panel').click(function() {
var $page = $($(this).attr('href')), $other = $page.siblings('.active');
if (!$page.hasClass('active')) {
$other.each(function(index, self) {
var $this = $(this);
$this.removeClass('active').animate({ left: $this.width() }, 500);
});
$page.addClass('active').show().css({ left: -($page.width()) }).animate({ left: 0 }, 500);
}
return false;
});
});
ありがとう