提供: Japanese Scratch-Wiki
Mochimochiking (トーク | 投稿記録) |
Mochimochiking (トーク | 投稿記録) |
||
9行目: | 9行目: | ||
.append( | .append( | ||
$("<a>") | $("<a>") | ||
− | .attr("href","https://ja.scratch-wiki.info/wiki/ | + | .attr("href","https://ja.scratch-wiki.info/wiki/special:Mypage/sandbox") |
.text("下書き") | .text("下書き") | ||
) | ) | ||
20行目: | 20行目: | ||
.append( | .append( | ||
$("<a>") | $("<a>") | ||
− | .attr("href","https://ja.scratch-wiki.info/wiki/ | + | .attr("href","https://ja.scratch-wiki.info/wiki/%E7%89%B9%E5%88%A5:%E5%AD%98%E5%9C%A8%E3%81%97%E3%81%AA%E3%81%84%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%B8%E3%81%AE%E3%83%AA%E3%83%B3%E3%82%AF").text("未作成") |
) | ) | ||
) | ) | ||
29行目: | 29行目: | ||
.append( | .append( | ||
$("<a>") | $("<a>") | ||
− | .attr("href","https://ja.scratch-wiki.info/wiki/ | + | .attr("href","https://ja.scratch-wiki.info/wiki/Japanese_Scratch-Wiki:%E3%82%AC%E3%82%A4%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E4%B8%80%E8%A6%A7").text("方針") |
) | ) | ||
); | ); |
2018年7月26日 (木) 10:23時点における版
$("div#p-personal li#pt-mytalk")
.children("a")
.text("会話")
.end()
.after(
$("<li>")
.attr("id","pt-sandbox")
.attr("title","自分のサンドボックス")
.append(
$("<a>")
.attr("href","https://ja.scratch-wiki.info/wiki/special:Mypage/sandbox")
.text("下書き")
)
);
$("div#p-personal li#pt-mycontris")
.after(
$("<li>")
.attr("id","pt-nolink")
.attr("title","ページが存在しないリンク")
.append(
$("<a>")
.attr("href","https://ja.scratch-wiki.info/wiki/%E7%89%B9%E5%88%A5:%E5%AD%98%E5%9C%A8%E3%81%97%E3%81%AA%E3%81%84%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%B8%E3%81%AE%E3%83%AA%E3%83%B3%E3%82%AF").text("未作成")
)
)
.after(
$("<li>")
.attr("id","pt-guide")
.attr("title","ガイドライン一覧")
.append(
$("<a>")
.attr("href","https://ja.scratch-wiki.info/wiki/Japanese_Scratch-Wiki:%E3%82%AC%E3%82%A4%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E4%B8%80%E8%A6%A7").text("方針")
)
);