一隻生活無憂,不知世途險惡的美國曲架,少爺B
月曆
10 | 2024/11 | 12 |
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
最新記事
最新回覆
- 皮膚進展
⇒blaty marmurowe (07/22) - 1202關注中國犬隻哀悼晚會
⇒hot college (11/24) - 1202關注中國犬隻哀悼晚會
⇒nude (11/15) - 1202關注中國犬隻哀悼晚會
⇒igudiz (11/13) - 1202關注中國犬隻哀悼晚會
⇒zmezisijyx (11/13) - 1202關注中國犬隻哀悼晚會
⇒okxedkusordin (11/13) - 1202關注中國犬隻哀悼晚會
⇒erotic stories (11/12) - 1202關注中國犬隻哀悼晚會
⇒nude (11/12)
目錄
Link
最新引用
搜尋記事
計數器
留言板
Mini迷你窩
魯瑪小時鐘
2006/09/04 (Mon)
完成了樹狀分類說明 & 語法 (一)後,
到版面管理 : テンプレートの設定/編集,
將以下語法貼在</body>前便行了
到版面管理 : テンプレートの設定/編集,
將以下語法貼在</body>前便行了
<script type="text/javascript">
<!--
// JavaScript based on : JUGEMカスタマイズ講座(http://nz.jugemers.net/log/eid31.html)
// customize by : まめの一言(JUGEM出張所)(http://mamejiro.jugem.cc/?eid=179)
// customize by : ニンブロラボ.(http://shinobibloglab.blog.shinobi.jp/Entry/2/)
// customize by : playground(http://mannequin.blog.shinobi.jp/Entry/45/)
function makeTreeElements (idName,objList) {
if (!objList.innerHTML) return;
var objLink = objList.getElementsByTagName('a')[0];
var linkUrl = objLink.getAttribute('href');
if (idName.indexOf('comment') > -1 || idName.indexOf('tb') > -1) {
var tmplinkUrl = linkUrl.split("#");
var tmpText = objList.innerHTML.split("⇒");
tmpText[0] = tmpText[0].slice(0,tmpText[0].search(/<BR/i));
this.base = Array('<a href="',tmplinkUrl[0],'">',tmpText[0],'</a>').join('');
this.elem = tmpText[1];
} else if (idName.indexOf('entry') > -1) {
var tmpText = objList.innerHTML;
tmpText.match(/\((\d{2}.+)\)/);
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',objLink.innerHTML,'</a>').join('');
} else if (idName.indexOf('link') > -1) {
var tmpTarget = objLink.getAttribute('target');
var tmpText = objList.innerHTML;
if ( tmpText.match(/\[(.+)\](.+)/) ) {
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'" target="',tmpTarget,'">',RegExp.$2,'</a>').join('');
}
} else if (idName.indexOf('category') > -1) {
var tmpText = objList.innerHTML;
if ( tmpText.match(/\[(.+)\](.+)/) ) {
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',RegExp.$2).join('');
}
} else if (idName.indexOf('archive') > -1) {
var tmpText = objList.innerHTML;
tmpText.match(/\((\d+)\)/);
var tmpCnt = Array(' (', RegExp.$1, ')').join('');
tmpText = objLink.innerHTML;
tmpText.match(/\[(.+)\](.+)/);
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',RegExp.$2,'</a>', tmpCnt).join('');
}
return this;
}
function createTreeList(idName,option) { // version 2.2
var objFocus = this.document.getElementById(idName);
if (!objFocus) return;
if (!objFocus.innerHTML) return;
var objLists = objFocus.getElementsByTagName('li');
var linkList = new Array();
var outText = new Array();
if (objLists.length > 0) {
for (i=0;i<objLists.length;i++) {
var chckFlag = true;
var elemText = new makeTreeElements(idName,objLists[i]);
if (!elemText.base || !elemText.elem) return;
for (j=0;j<linkList.length;j++) {
if ( linkList[j].base.indexOf(elemText.base) > -1 ) {
chckFlag = false;
linkList[j][linkList[j].length] = elemText.elem;
}
}
if (chckFlag) {
var tmpNum = linkList.length;
linkList[tmpNum] = new Array();
linkList[tmpNum][0] = elemText.elem;
linkList[tmpNum].base = elemText.base;
}
}
if (linkList.length > 0) {
outText[outText.length] = '<ul>\n';
for (i=0;i<linkList.length;i++) {
outText[outText.length] = Array('<li>',linkList[i].base,option.top).join('');
if (linkList[i].length > 0 && option.sort) linkList[i].reverse();
for (j=0;j<linkList[i].length;j++) {
outText[outText.length] = (j == linkList[i].length - 1) ? option.end : option.list;
outText[outText.length] = Array(linkList[i][j],option.leef).join('');
}
outText[outText.length] = Array(option.btm,'</li>').join('');
}
outText[outText.length] = '</ul>\n';
objFocus.innerHTML = outText.join('');
}
}
}
var gTreeOption = new Array;
gTreeOption['sort'] = false; /* ツリー内の表示順 true:並び替える false:そのまま */
gTreeOption['list'] = '⇒ '; /* ツリー用マーク(通常) */
gTreeOption['end'] = '⇒ '; /* ツリー用マーク(末端) */
gTreeOption['leef'] = '<br>\n'; /* 各枝の末尾 */
gTreeOption['top'] = '<br>\n'; /* ツリー本体の最初 */
gTreeOption['btm'] = ''; /* ツリー本体の最後 */
createTreeList('entrylist',gTreeOption); // 最新記事リストのツリー化
createTreeList('linklist',gTreeOption); // リンクリストのツリー化
createTreeList('categorylist',gTreeOption); // カテゴリーリストのツリー化
createTreeList('archivelist',gTreeOption); // アーカイブリストのツリー化
gTreeOption['sort'] = false; /* ツリー内の表示順 true:並び替える false:そのまま */
gTreeOption['list'] = '┣'; /* ツリー用マーク(通常) */
gTreeOption['end'] = '┗'; /* ツリー用マーク(末端) */
gTreeOption['leef'] = '<br>\n'; /* 各枝の末尾 */
gTreeOption['top'] = '<br>\n'; /* ツリー本体の最初 */
gTreeOption['btm'] = ''; /* ツリー本体の最後 */
createTreeList('commentlist',gTreeOption); // 最新CMリストのツリー化
createTreeList('tblist',gTreeOption); // 最新TBリストのツリー化
// -->
</script>
現在可去看看成果吧
<!--
// JavaScript based on : JUGEMカスタマイズ講座(http://nz.jugemers.net/log/eid31.html)
// customize by : まめの一言(JUGEM出張所)(http://mamejiro.jugem.cc/?eid=179)
// customize by : ニンブロラボ.(http://shinobibloglab.blog.shinobi.jp/Entry/2/)
// customize by : playground(http://mannequin.blog.shinobi.jp/Entry/45/)
function makeTreeElements (idName,objList) {
if (!objList.innerHTML) return;
var objLink = objList.getElementsByTagName('a')[0];
var linkUrl = objLink.getAttribute('href');
if (idName.indexOf('comment') > -1 || idName.indexOf('tb') > -1) {
var tmplinkUrl = linkUrl.split("#");
var tmpText = objList.innerHTML.split("⇒");
tmpText[0] = tmpText[0].slice(0,tmpText[0].search(/<BR/i));
this.base = Array('<a href="',tmplinkUrl[0],'">',tmpText[0],'</a>').join('');
this.elem = tmpText[1];
} else if (idName.indexOf('entry') > -1) {
var tmpText = objList.innerHTML;
tmpText.match(/\((\d{2}.+)\)/);
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',objLink.innerHTML,'</a>').join('');
} else if (idName.indexOf('link') > -1) {
var tmpTarget = objLink.getAttribute('target');
var tmpText = objList.innerHTML;
if ( tmpText.match(/\[(.+)\](.+)/) ) {
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'" target="',tmpTarget,'">',RegExp.$2,'</a>').join('');
}
} else if (idName.indexOf('category') > -1) {
var tmpText = objList.innerHTML;
if ( tmpText.match(/\[(.+)\](.+)/) ) {
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',RegExp.$2).join('');
}
} else if (idName.indexOf('archive') > -1) {
var tmpText = objList.innerHTML;
tmpText.match(/\((\d+)\)/);
var tmpCnt = Array(' (', RegExp.$1, ')').join('');
tmpText = objLink.innerHTML;
tmpText.match(/\[(.+)\](.+)/);
this.base = RegExp.$1;
this.elem = Array('<a href="',linkUrl,'">',RegExp.$2,'</a>', tmpCnt).join('');
}
return this;
}
function createTreeList(idName,option) { // version 2.2
var objFocus = this.document.getElementById(idName);
if (!objFocus) return;
if (!objFocus.innerHTML) return;
var objLists = objFocus.getElementsByTagName('li');
var linkList = new Array();
var outText = new Array();
if (objLists.length > 0) {
for (i=0;i<objLists.length;i++) {
var chckFlag = true;
var elemText = new makeTreeElements(idName,objLists[i]);
if (!elemText.base || !elemText.elem) return;
for (j=0;j<linkList.length;j++) {
if ( linkList[j].base.indexOf(elemText.base) > -1 ) {
chckFlag = false;
linkList[j][linkList[j].length] = elemText.elem;
}
}
if (chckFlag) {
var tmpNum = linkList.length;
linkList[tmpNum] = new Array();
linkList[tmpNum][0] = elemText.elem;
linkList[tmpNum].base = elemText.base;
}
}
if (linkList.length > 0) {
outText[outText.length] = '<ul>\n';
for (i=0;i<linkList.length;i++) {
outText[outText.length] = Array('<li>',linkList[i].base,option.top).join('');
if (linkList[i].length > 0 && option.sort) linkList[i].reverse();
for (j=0;j<linkList[i].length;j++) {
outText[outText.length] = (j == linkList[i].length - 1) ? option.end : option.list;
outText[outText.length] = Array(linkList[i][j],option.leef).join('');
}
outText[outText.length] = Array(option.btm,'</li>').join('');
}
outText[outText.length] = '</ul>\n';
objFocus.innerHTML = outText.join('');
}
}
}
var gTreeOption = new Array;
gTreeOption['sort'] = false; /* ツリー内の表示順 true:並び替える false:そのまま */
gTreeOption['list'] = '⇒ '; /* ツリー用マーク(通常) */
gTreeOption['end'] = '⇒ '; /* ツリー用マーク(末端) */
gTreeOption['leef'] = '<br>\n'; /* 各枝の末尾 */
gTreeOption['top'] = '<br>\n'; /* ツリー本体の最初 */
gTreeOption['btm'] = ''; /* ツリー本体の最後 */
createTreeList('entrylist',gTreeOption); // 最新記事リストのツリー化
createTreeList('linklist',gTreeOption); // リンクリストのツリー化
createTreeList('categorylist',gTreeOption); // カテゴリーリストのツリー化
createTreeList('archivelist',gTreeOption); // アーカイブリストのツリー化
gTreeOption['sort'] = false; /* ツリー内の表示順 true:並び替える false:そのまま */
gTreeOption['list'] = '┣'; /* ツリー用マーク(通常) */
gTreeOption['end'] = '┗'; /* ツリー用マーク(末端) */
gTreeOption['leef'] = '<br>\n'; /* 各枝の末尾 */
gTreeOption['top'] = '<br>\n'; /* ツリー本体の最初 */
gTreeOption['btm'] = ''; /* ツリー本体の最後 */
createTreeList('commentlist',gTreeOption); // 最新CMリストのツリー化
createTreeList('tblist',gTreeOption); // 最新TBリストのツリー化
// -->
</script>
現在可去看看成果吧
PR
この記事にコメントする
Re:無題
我試了幾個版面都成功,暫時沒有不成功啊^^
想請教一下
打擾了。
想請教一下,
我的樹狀分類作出來,本來應該呈現樹狀的小分類,前面的符號卻變成「=>」?
想請問我是哪裡出錯了呢?
我只改了分類目錄的語法,
然後將這篇的語法貼在</body>前面...
請問我這些步驟有哪裡不對的嗎?
謝謝你的回答<(_ _)>
想請教一下,
我的樹狀分類作出來,本來應該呈現樹狀的小分類,前面的符號卻變成「=>」?
想請問我是哪裡出錯了呢?
我只改了分類目錄的語法,
然後將這篇的語法貼在</body>前面...
請問我這些步驟有哪裡不對的嗎?
謝謝你的回答<(_ _)>
Re:想請教一下
不打擾,如你想用另一些形狀代替的話,可將這語法現有的符號改掉就行了
business hosting web yahoo keywords
<a href= http://rnjxmigu.tripod.com/web-hosting-no-ads/business-hosting-web-yah.html >business hosting web yahoo keywords</a>
review of yahoo web hosting
<a href= http://rnjxmigu.tripod.com/web-hosting-no-ads/free-hosting-php-web.html >review of yahoo web hosting</a>
murad cigarette
<a href= http://rnjxmigu.tripod.com/dr-murad/murad-cigarette.html >murad cigarette</a>
jenny craig entree calories
<a href= http://gqrwc8l8.t35.com/cost-of-jenny-craig/jenny-craig-entree-calories.html >jenny craig entree calories</a>
jenny craig edmonton
<a href= http://yiprerr6.t35.com/cost-of-jenny-craig/jenny-craig-edmonton.html >jenny craig edmonton</a>
xenical side effect
<a href= http://www.blogger.com/feeds/397141133302054723/posts/default >xenical side effect</a>
nexxx
hi it's jessy cool site thx :) <a href=" http://www.imeem.com/people/-l3tksK ">nexxx never enough</a>
redtube
wow interesting site thx <a href=" http://www.imeem.com/people/kqdHDDQ ">redtube movies</a> see later
Xtkwovey
very best job <a href=" http://club.ign.com/b/about?username=Jozig ">gay bars winchester va</a> 515670
loli
great work great site 10x <a href=" http://www.epinions.com/user-loli4/show_~View_Profile ">alolita</a>
frogsex
gfdgdgdf <a href=" http://www.epinions.com/user-frogsex/show_~View_Profile ">anal frogsex</a>
twilightsex
<a href=" http://www.epinions.com/user-twilightsex/show_~View_Profile ">frogtwilightsex</a>
xxxvogue
hgfhgjgkkjg <a href=" http://www.epinions.com/user-xxxvogue/show_~View_Profile ">pokemon xxxvogue</a>
Cjmihxlq
Very Good Site <a href=" http://blogs.ign.com/janrna/2008/07/06/94957/ ">young teen pussy</a> 634
amature
hgfhfghf <a href=" http://www.epinions.com/user-amaturez/show_~View_Profile ">amature videos</a>
teenax
gsdgdsfgdsfg <a href=" http://www.epinions.com/user-teenax/show_~View_Profile ">teenax anal</a>
Linkz
Preved webmastero4ki, <a href=" http://rollyo.com/breast_augmentation ">natural breast enhancement</a>, 101,
Linkz
Preved webmastero4ki, <a href=" http://rollyo.com/generic_lipitor ">lipitor side effects</a>, 852557,
Linkz
Preved webmastero4ki, <a href=" http://rollyo.com/buy_ultram_now ">buy ultram online</a>, 720,
Pdpmsige
Best Site Good Work <a href=" http://club.ign.com/b/about?username=GenryWalsmy ">old bitches getting fucked</a> =PPP
Linkz
Good luck, <a href=" http://sites.google.com/site/analcreampiemovies1 ">anal secretary
</a>, =(((,
Linkz
This is a best site, <a href=" http://www.google.ca/notebook/public/04386556611417647367/BDQcjSgoQvZzl1bcj ">x tube
</a>, >:-[[,
Linkz
Nice stuff, http://www.google.ca/notebook/public/02670656156733425644/BDRJ6SgoQmIeS1Lcj lesbian galleries
, rff,
Linkz
Sorry, <a href=" http://www.google.ca/notebook/public/11810455721427699431/BDSB2SgoQg9OO1Lcj ">lesbian hentai
</a>, 8-PP,
Linkz
Nice stuff, http://www.google.ca/notebook/public/02670656156733425644/BDRJ6SgoQmIeS1Lcj lesbian galleries
, 13887,
Linkz
This is a best site, http://www.google.ca/notebook/public/02670656156733425644/BDQUbSgoQrKSS1Lcj lesbian gallery
, 05707,
Linkz
Visit this link please, <a href=" http://www.google.ca/notebook/public/02670656156733425644/BDQE8SgoQtqyR1Lcj ">lesbian teen hunter
</a>, hcla,
Linkz
Cool site, http://www.google.ca/notebook/public/03726963131370744363/BDSB2SgoQnPmN1Lcj lesbians kissing
, 827,
Linkz
Sorry, <a href=" http://www.google.ca/notebook/public/02670656156733425644/BDRJ6SgoQh7iT1Lcj ">lesbian cheerleaders
</a>, 916831,
Linkz
Nice stuff, http://www.google.ca/notebook/public/02670656156733425644/BDQE8SgoQosKS1Lcj lesbian chat rooms
, ewikc,
Linkz
Visit this link please, http://www.google.ca/notebook/public/03726963131370744363/BDRqfSgoQ_tuN1Lcj lesbian erotica
, 02906,
Linkz
Good luck, <a href=" http://www.google.ca/notebook/public/02670656156733425644/BDSB2SgoQ_5qT1Lcj ">lesbian fisting
</a>, 0816,
Linkz
Good luck, http://www.google.ca/notebook/public/03726963131370744363/BDQJ1SgoQp7qM1Lcj teen lesbians
, >:)),
Linkz
Visit this link please, <a href=" http://www.google.ca/notebook/public/02670656156733425644/BDQE8SgoQtqyR1Lcj ">lesbian teen hunter
</a>, qdcb,
Linkz
Preved webmastero4ki, <a href=" http://www.google.ca/notebook/public/03726963131370744363/BDR-CSgoQvJWO1Lcj ">asian lesbians
</a>, 606913,
Linkz
Preved webmastero4ki, http://www.google.ca/notebook/public/02670656156733425644/BDQE8SgoQtqyR1Lcj lesbian teen hunter
, 4057,
Linkz
This is a best site, http://www.google.ca/notebook/public/03726963131370744363/BDQqXSgoQydaM1Lcj hot lesbians
, 647731,
Linkz
Nice stuff, http://www.google.ca/notebook/public/03726963131370744363/BDQVnSwoQp6KN1Lcj lesbian pics
, eimhch,
Linkz
Nice stuff, <a href=" http://www.google.ca/notebook/public/03726963131370744363/BDQfxSgoQ2_KM1Lcj ">lesbian video
</a>, 8-],
Linkz
Good luck, http://www.google.ca/notebook/public/03726963131370744363/BDQJ1SgoQp7qM1Lcj teen lesbians
, dqps,
Linkz
Nice stuff, <a href=" http://www.google.ca/notebook/public/11810455721427699431/BDQGASgoQ_LuQ1Lcj ">lesbians fucking
</a>, ntyeyf,
Linkz
Visit this link please, http://www.google.ca/notebook/public/03726963131370744363/BDRJ6SgoQ37-N1Lcj lesbian movie
, 240,
Linkz
Good luck, http://www.google.ca/notebook/public/02670656156733425644/BDRJ6SgoQmIeS1Lcj lesbian galleries
, kezviy,
Linkz
Sorry, http://www.google.ca/notebook/public/03726963131370744363/BDSB2SgoQnPmN1Lcj lesbians kissing
, czjeix,
Linkz
Preved webmastero4ki, <a href=" http://myprofile.cos.com/tugret ">x tube muscle worship</a>, =-[[[,
Linkz
This is a best site, http://www.google.ca/notebook/public/02670656156733425644/BDR-CSgoQgP6S1Lcj lesbian wrestling
, 812342,
Linkz
Nice stuff, <a href=" http://www.google.ca/notebook/public/16945710033791990731/BDQVnSwoQ8dvp1bcj ">boob tube
</a>, fcqlxh,
Linkz
This is a best site, http://www.esnips.com/user/ohaaredenahuro?session=ojeiR6J4w0csfXIwwxrAAA==vu8= 18 cuties, :-))), http://www.esnips.com/user/iseqiasirety?session=jp/WKtx7KovrP4/TcB4xJA==6ZY= shooshtime, 3060, http://www.esnips.com/user/pukofytyaca?session=8cy1e0RP/TtB7eipbSeSuA==WRM= redcloud, 011973,
Linkz
Sorry, <a href=" http://www.google.ca/notebook/public/04386556611417647367/BDQUbSgoQ5qrm1bcj ">eskimo tube
</a>, badgf,
Linkz
Nice stuff, <a href=" http://www.google.ca/notebook/public/03761202671797518193/BDQcjSgoQv7Xo1bcj ">black tube dress
</a>, fff,
Linkz
Sorry, <a href=" http://www.google.ca/notebook/public/03761202671797518193/BDQcjSgoQv7Xo1bcj ">black tube dress
</a>, 9915,
Linkz
Cool site, <a href=" http://www.google.ca/notebook/public/03761202671797518193/BDQcjSgoQv7Xo1bcj ">black tube dress
</a>, 1755,
Linkz
Good luck, <a href=" http://www.google.ca/notebook/public/16945710033791990731/BDR12SgoQ9_Hp1bcj ">tube red
</a>, %))),
Linkz
Good luck, <a href=" http://www.google.ca/notebook/public/14282782550204493413/BDRJ6SgoQxZLn1bcj ">lube tube
</a>, 2836,
Linkz
Preved webmastero4ki, <a href=" http://www.google.ca/notebook/public/14282782550204493413/BDQJ1SgoQ6dHm1bcj ">zoo tube
</a>, zojgr,
Linkz
Good luck, <a href=" http://www.google.ca/notebook/public/03761202671797518193/BDQUbSgoQgf7n1bcj ">adult tube
</a>, 613961,
Linkz
Nice stuff, <a href=" http://www.google.ca/notebook/public/03761202671797518193/BDQVnSwoQiNHo1bcj ">tube top
</a>, skdsx,
Linkz
Preved webmastero4ki, <a href=" http://www.google.ca/notebook/public/04386556611417647367/BDQqXSgoQi_Ll1bcj ">porn hub
</a>, nrfkd,
Linkz
This is a best site, <a href=" http://www.google.ca/notebook/public/16945710033791990731/BDQE8SgoQyb3q1bcj ">animal tube</a>, 940286,
Kcdgetpm
Wonderfull great site <a href=" http://forum.xnxx.com/member.php?u=207091 ">xnxx stories</a> 573408
Linkz
comment5, <a href=" http://www.connotea.org/wiki/User:pornotube1 ">condenser tube cleaning</a>, =PP,
Ycwnmfer
I'm happy very good site <a href=" http://forum.gorillamask.net/member.php?u=1800 ">fetishtube</a> >:-DD