jQuery(document).ready(function () { //在要顯示信箱的地方加上一個class="getmail"的標籤, //如:信箱:載入中,請稍後... mailhead = "service"; mailbody = "suns-furniture.com.tw"; if ( $(".getmail").length > 0 ) { //如果當前元素存在... setTimeout(function(){ $('.getmail').hide().html(mailhead + '@' + mailbody).fadeIn('slow'); }, 5000); } }); //$(document).ready end