ボタンが 3 つあるブロックがあり、ボタンごとに異なるコンテンツが読み込まれます。これら 3 つのほぼ同一の関数を 1 つの関数に短縮するにはどうすればよいですか?
$('#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();
});