代码之家  ›  专栏  ›  技术社区  ›  MrCoder

在div的空白处捕捉鼠标悬停

  •  0
  • MrCoder  · 技术社区  · 14 年前

    1 回复  |  直到 12 年前
        1
  •  0
  •   BrunoLM    14 年前

    <div>content here and whitespaces</div>
    <!-- wraping... -->
    <div>content<div class="whitespace"> </div>here<div class="whitespace"> </div>and<div class="whitespace"> </div>whitespaces</div>
    

    jQuery's live 绑定事件。

    $(".whitespace").live("mouseover", function(e){
        // This should do...
    });