Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
わかりましたので、その下の div.b をロールオーバーしながら div.a 内のコンテンツを変更しようとしています。バーの上をスクロールする画像リストのように、ロールオーバーするとタイトルが表示されます。
助けてください、マーク
これは非常に単純化されていますが、アイデアを提供するだけです。
//jquery
$(function(){ $('a#trigger').hover(){function(){ $('h1')html('<p>first content</p>'); },function(){ $('h1').html('<p>second content</p>'); }}; });