1

我想在此切换框的底部添加一个关闭按钮。有人可以帮我写剧本吗?谢谢。

  <td>
    <a href="javascript:void(0)" class="heading">Business Management in the Global Economy <small>(2+2 Program)</small></a>
    <div class="info-hidden info" style="height:380px;">
      <p>
        <b>Program Description:</b><br />
        Some Text.......
        <br />
        <a href="/programs/bachelors-in-business-management-in-the-global-economy.php" class="nudge">
          <b>Learn More &#9658;</b>
          <a class="close" href="javascript:void(0)">Close &#9746;</a>
        </a>
      </p>
    </div>
  </td>

脚本看起来像这样 - 非常简单。

// slide toggle
  $(".info").hide();
    //toggle the componenet with class msg_body
    $(".heading").click(function()
    {
      $(this).next(".info").slideToggle(300);
  });
4

2 回答 2

0

我用这个……

// slide toggle
$(".info").hide();
//toggle the componenet with class msg_body
$(".heading").click(function() {
    $(this).next(".info").slideToggle(400);
});
$(".closeToggle").click(function() {
    $(this).parent(".info").slideToggle();
});
于 2012-06-15T18:18:30.183 回答
0
$('a.close').click(function(e){
    e.preventDefault();
    $(this).parents('div.info-hidden.info').slideToggle();
});

jsFiddle 示例

于 2012-06-15T17:06:24.433 回答