suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Das Div ist ein Link. Wenn die Maus nach oben bewegt wird, wird ein Div angezeigt, z. B. eine Schaltfläche „Mehr anzeigen“.

Entschuldigung, p ist ein Link. Wenn Sie mit der Maus darüber fahren, wird ein p angezeigt, z. B. eine Schaltfläche „Mehr anzeigen“.

怪我咯怪我咯2750 Tage vor901

Antworte allen(4)Ich werde antworten

  • typecho

    typecho2017-07-05 10:42:58

    监听mouseenter事件,然后显示p或按钮就好了啊

    Antwort
    0
  • PHP中文网

    PHP中文网2017-07-05 10:42:58

    使用 csshover

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-07-05 10:42:58

    /* 1.css */
    .more{display:none};
    p:hover .more{display:block}
    //2.js
    $('p').hover(function(){
    $('.more').show();
    })

    http://jsbin.com/tiqenecata/e...

    Antwort
    0
  • 欧阳克

    欧阳克2017-07-05 10:42:58

    html:
    <p>

    <p class="a">假如我是一个链接</p>
    <p class="b">点我查看更多</p>

    <p>

    js(加载jQuery库):

    $(function(){

        $(".b").css("display","none");      //初始化隐藏按钮
        $(".a").hover(function(){           //鼠标移入移出函数
            $(".b").css("dispaly","block")  //移入显示
        },function(){    
            $(".b").css("dispaly","none")   //移出隐藏
        })  
    

    })

    Antwort
    0
  • StornierenAntwort