// Toggle the sharing section
// Start with hiding the icon list
$("#shareThisPost").click(function(){
$("#shareThisPost").fadeOut("slow");
$(function() {
$("div#shareSection ul").fadeIn("slow");
$shareState = 1;
});
});
功能2
// Toggle the sharing section
// Start with hiding the icon list
$("#shareThisPost").click(function(){
$("#shareThisPost").fadeOut("slow", function() {
$("div#shareSection ul").fadeIn("slow");
$shareState = 1;
});
});
這兩個函數都適用於我,但我只是想知道使用「,」與其他函數分開「慢」之間的區別是什麼。 – tanktery