我有三個按鈕的塊,每個按鈕加載不同的內容。 如何將這三個幾乎相同的函數縮短爲一個函數?縮短功能於一體
$('#mega_online').click(function() {
$("#contentjq_more").empty().html('<center><img src="http://site.com/image.gif" /></center>');
$("#contentjq").load("http://site.com/online.php?more=" + $morenum + "&movies=1");
$("#contentjq_more").empty().html('');
$morenum = $morenum+20;
$("#contentjq").show();
});
$('#mega_files').click(function() {
$morenum = 0;
$("#contentjq_more").empty().html('<center><img src="http://site.com/image.gif" /></center>');
$("#contentjq").load("http://site.com/files.php?more=" + $morenum + "&movies=1");
$("#contentjq_more").empty().html('');
$morenum = $morenum+20;
$("#contentjq").show();
});
$('#mega_music').click(function() {
$morenum = 0;
$("#contentjq_more").empty().html('<center><img src="http://site.com/image.gif" /></center>');
$("#contentjq").load("http://site.com/music.php?more=" + $morenum + "&movies=1");
$("#contentjq_more").empty().html('');
$morenum = $morenum+20;
$("#contentjq").show();
});
嘛,你嘗試過什麼?這裏沒有「問題」,只有一個「任務」。如果嘗試了*,可能會出現問題,然後會發生某些意外事件。爲了讓其他人查看您的代碼並提供建議,請嘗試使用代碼審查網站。 – 2012-12-13 22:57:10
http://codereview.stackexchange.com是你要找的 –