1

JavaScript に問題があります。コンテナー内のすべてのヘッダー要素を検索し、クリック イベントをヘッダーに追加して p タグを非表示にするスクリプトを作成しようとしています。

Javascript 
$(function(){
$("dnn_htmlPan1").find(":header").click(function(){
        $("dnn_htmlPan1").find("p").slideToggle("slow");
    });
});

HTML

<div id="dnn_htmlPan1" class="htmlPan">
    <h2>EXPLORE</h2>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
4

2 に答える 2

5

jQuery セレクターが間違っています:

#はID用です:

$("#dnn_htmlPan1").find(":header").click(function(){
        $("#dnn_htmlPan1").find("p").slideToggle("slow");
        // or 
        // $(this).parent().find("p").slideToggle("slow");
        // or 
        // $(this).next().slideToggle("slow");
    });
});

:header正しい:

:headerセレクタ

説明: h1、h2、h3 などのヘッダーであるすべての要素を選択します。

ドキュメントで詳細を読む

于 2013-08-13T15:00:56.423 に答える
2

変化する:

$("dnn_htmlPan1").find(":header").click(function(){

に:

$("#dnn_htmlPan1").find(":header").click(function() {

#ID を検索していることを表す を忘れました

于 2013-08-13T15:00:50.470 に答える