【自作】 プログラミング 【してみた】

2afb31c5 :2e2d20c9 2009-12-20 05:51
>>2e2d20c9
frindex.src = "/?C=M;O=A";
は別に決め打ちでなくて
frindex.src = location.pathname + "?C=M;O=A";
でいいよね。
あと、
frbody.onload = function () { linkfix(); }
とかしてブラケットリンクの補正をしとかないと。忘れてた。

function linkfix () {
var a = top.body.document.getElementsByTagName("a");
for (i=0; i<a.length; i++) {
var text = a[i].innerHTML;
if (text.match(/^\[\[/)) {
a[i].target = "index";
a[i].href = a[i].href + "?C=M;O=A";
}
}
}
Powered by shinGETsu.