typecho文章标题动态js载入效果问题

闲的蛋疼的时间,折腾一下还是挺好的!

$(function() {
$('.article-title a').click(function(e) {
e.preventDefault();
var htm = 'Loading',
i = 4,
t = $(this).html(htm).unbind('click'); (function ct() {
i < 0 ? (i = 4, t.html(htm), ct()) : (t[0].innerHTML += '.', i--, setTimeout(ct, 150)) })(); window.location = $(this).attr('href'); }) });

以上是Js代码

title() ;?>


以上是PHP中关于文章标题的代码

1 评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注