﻿jQuery(document).ready(function($){
//By ImMmMm.com
$('.post-title h2').click(function(){//点击class="post-title"元素内的h2，即文章标题
	$(this).find('a').html('页面载入中<span>.</span><span>.</span><span>.</span> <span>.</span><span>.</span><span>.</span>');//更改所点击的文章标题，后面6个点先用CSS隐藏
	for(i=0;i<=6;i++){//For循环6次
		$(this).children('span').eq(i).delay(i+'99').show(0);//让标题内的span一个一个相隔不同时间显示出来
	}
	window.location = $(this).find('a').attr('href');//取得标题链接并打开，不写此句Opera下页面不会跳转
	return false;//阻止默认点击事件
});
});
