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 ►</b>
<a class="close" href="javascript:void(0)">Close ☒</a>
</a>
</p>
</div>
</td>
腳本看起來像這樣 - 很簡單。
// slide toggle
$(".info").hide();
//toggle the componenet with class msg_body
$(".heading").click(function()
{
$(this).next(".info").slideToggle(300);
});
這個例子中擺弄就好了,但不是在我的網頁作品...我不知道我已經回事... HTTP:/ /www.acot.edu/pages/programs-offered.php – arnonate
另外 - 我改變了鏈接,以便在鏈接中沒有鏈接。 – arnonate