2012-06-15 76 views
1

我想在此切換框的底部添加一個關閉按鈕。請有人幫我處理劇本嗎?謝謝。添加一個關閉按鈕切換框js

<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); 
    }); 

回答

0
$('a.close').click(function(e){ 
    e.preventDefault(); 
    $(this).parents('div.info-hidden.info').slideToggle(); 
}); 

jsFiddle example

+0

這個例子中擺弄就好了,但不是在我的網頁作品...我不知道我已經回事... HTTP:/ /www.acot.edu/pages/programs-offered.php – arnonate

+0

另外 - 我改變了鏈接,以便在鏈接中沒有鏈接。 – arnonate

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(); 
});