コメントの表示
2006/05/27 (Sat) 12:22
Home、月別やカテゴリー別の表示で本文の下にコメントを簡易表示するようにしてみました。コメントを書く場合は「Contribution of comment」のリンクで、今までのようなコメントの詳細表示+コメント入力になります。
けっこう JavaScript を駆使しているので、Windows + IE 6 以外はうまく表示できないかもしれません。(;´Д`)
他にも詳細表示で、URL の入力がある場合にのみ、名前に URL をリンクしたり、本文とコメントの日付が同じ場合は時刻のみ表示とかしてます。(・∀・)
けっこう JavaScript を駆使しているので、Windows + IE 6 以外はうまく表示できないかもしれません。(;´Д`)
他にも詳細表示で、URL の入力がある場合にのみ、名前に URL をリンクしたり、本文とコメントの日付が同じ場合は時刻のみ表示とかしてます。(・∀・)
<script type="text/javascript">
function writeCommentState(name, url, date, time, body) {
document.write('<div class="comment_state">');
if (url != "") {
document.write('<a href="' + url + '" target="_blank">' + name + '</a>');
}
else {
document.write(name);
}
document.write(' | ');
if (date != entry_date) {
document.write(date + ' ');
}
document.write(time);
document.write('</div>');
document.write('<div class="comment_text">' + body + '</div>');
}
<!--comment-->
writeCommentState('<%comment_name>', '<%comment_url>', '<%comment_year>/<%comment_month>/<%comment_day> (<%comment_youbi>)', '<%comment_hour>:<%comment_minute>', '<%comment_body>');
<!--/comment-->
</script>
<noscript>
<!--comment-->
<div class="comment_state">
<%comment_name> | <%comment_year>/<%comment_month>/<%comment_day> (<%comment_youbi>) <%comment_hour>:<%comment_minute>
</div>
<div class="comment_text"><%comment_body></div>
<!--/comment-->
</noscript>
<!--topentry--> 内で entry_date に本文の日付を保存しておく必要があります。function writeCommentState(name, url, date, time, body) {
document.write('<div class="comment_state">');
if (url != "") {
document.write('<a href="' + url + '" target="_blank">' + name + '</a>');
}
else {
document.write(name);
}
document.write(' | ');
if (date != entry_date) {
document.write(date + ' ');
}
document.write(time);
document.write('</div>');
document.write('<div class="comment_text">' + body + '</div>');
}
<!--comment-->
writeCommentState('<%comment_name>', '<%comment_url>', '<%comment_year>/<%comment_month>/<%comment_day> (<%comment_youbi>)', '<%comment_hour>:<%comment_minute>', '<%comment_body>');
<!--/comment-->
</script>
<noscript>
<!--comment-->
<div class="comment_state">
<%comment_name> | <%comment_year>/<%comment_month>/<%comment_day> (<%comment_youbi>) <%comment_hour>:<%comment_minute>
</div>
<div class="comment_text"><%comment_body></div>
<!--/comment-->
</noscript>
スパム対策のため言及リンクのないトラックバックは受けないように設定されています。










└わっしー (02/23)
└わっしー (09/07)
└わっしー (07/27)
└わっしー (07/17)
└うれっち (07/17)
└わっしー (07/13)
└わっしー (07/09)
└かりん (07/08)
└わっしー (06/22)
└わっしー (06/21)
└わっしー (06/16)
└生っぴ (06/16)
└わっしー (06/07)
└わっしー (06/07)
└なおみ (06/06)