所以寫了一個小程式判斷如果連結不是http://whhnote.blogspot.com開頭 就會另開視窗
展開小裝置範本後, 搜尋</body>
在</body>上面加上如下Code:
<script type="text/javascript"> jQuery("a").each(function(index) { var r = new RegExp("^http://whhnote"); if (!r.test(jQuery(this).attr('href'))) { jQuery(this).attr('target', '_blank'); } }); </script>
Code中間的http://whhnote改成你自己網站的網址
我有用到jQuery, 通常Blogger應該都會讀取, 如果發現沒辦法用, 將以下code加在上面的Code的上面
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>