復制代碼 代碼如下:
<script type="text/javascript">
$(function(){
c_url = 'http://s8.hk:8088/s8/s?format=text&longUrl=';
c_url += document.location.href;
c_url += '&jsonp=?'
$.getJSON(c_url, function(data){
$("<div>本文短址:</div>").css("font-weight", "normal")
.css("font-size", "12px")
.append($("<a>"+data+"</a>").attr("href", data))
.appendTo(".post .postTitle"); # 此行需要特殊處理,不過在博客園一般情況下是不用修改的。
});
});
</script>